Skip to content

Commit

Permalink
Clean up code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
zacksiri committed Oct 7, 2024
1 parent 675c458 commit 43bcb1c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/uplink/packages/instance/finalize_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,12 @@ defmodule Uplink.Packages.Instance.FinalizeTest do
assert {:ok, body, conn} = Plug.Conn.read_body(conn)
assert {:ok, body} = Jason.decode(body)

%{"event" => %{"name" => event_name, "parameters" => %{"hash" => hash}}} = body
%{
"event" => %{
"name" => event_name,
"parameters" => %{"hash" => hash}
}
} = body

assert hash == "some-hash"

Expand Down

0 comments on commit 43bcb1c

Please sign in to comment.