Skip to content

Commit 156dcd1

Browse files
Fix formatting
1 parent 4ce7c76 commit 156dcd1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/absinthe/federation/schema/entity_union_test.exs

+2-4
Original file line numberDiff line numberDiff line change
@@ -293,8 +293,7 @@ defmodule Absinthe.Federation.Schema.EntityUnionTest do
293293
}
294294
"""
295295

296-
%{data: %{"_entities" => [circle, rectangle]}} =
297-
Absinthe.run!(query, MacroSchemaWithInterface)
296+
%{data: %{"_entities" => [circle, rectangle]}} = Absinthe.run!(query, MacroSchemaWithInterface)
298297

299298
assert circle == %{"id" => "123", "__typename" => "Circle"}
300299
assert rectangle == %{"id" => "321", "__typename" => "Rectangle"}
@@ -309,8 +308,7 @@ defmodule Absinthe.Federation.Schema.EntityUnionTest do
309308
}
310309
"""
311310

312-
%{data: %{"shapes" => [circle, rectangle]}} =
313-
Absinthe.run!(query, MacroSchemaWithInterface)
311+
%{data: %{"shapes" => [circle, rectangle]}} = Absinthe.run!(query, MacroSchemaWithInterface)
314312

315313
assert circle == %{"id" => "1"}
316314
assert rectangle == %{"id" => "2"}

0 commit comments

Comments
 (0)