Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Jul 31, 2023
1 parent 8e898e7 commit 7e46a62
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion test/read_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,11 @@ defmodule AshGraphql.ReadTest do

test "a read with custom set types works" do
AshGraphql.Test.Post
|> Ash.Changeset.for_create(:create, text: "foo", integer_as_string_in_api: 1, published: true)
|> Ash.Changeset.for_create(:create,
text: "foo",
integer_as_string_in_api: 1,
published: true
)
|> AshGraphql.Test.Api.create!()

resp =
Expand Down
4 changes: 3 additions & 1 deletion test/relay_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,9 @@ defmodule AshGraphql.RelayTest do
}
}
}} =
Absinthe.run(page2, AshGraphql.Test.Schema, variables: %{"before" => start_cursor1})
Absinthe.run(page2, AshGraphql.Test.Schema,
variables: %{"before" => start_cursor1}
)
end

test "last with middle cursor" do
Expand Down

0 comments on commit 7e46a62

Please sign in to comment.