Skip to content

Commit

Permalink
fix Box test
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed May 15, 2020
1 parent 48111fc commit 859b6b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/tests/database/test_hasura.py
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ async def test_execute_respects_as_box(self):
result = await HasuraClient().execute("query { x }")
assert isinstance(result, Box)
assert result.data.x == 1
assert isinstance(result.data.y[0].a, Box)
assert isinstance(result.data.y[0], Box)
assert result.data.y[0].a == 1

async def test_execute_respects_not_as_box(self):
Expand Down

0 comments on commit 859b6b2

Please sign in to comment.