Updated test.

This commit is contained in:
Tonye Jack 2021-02-06 13:52:39 -05:00
parent fd9209658d
commit ac9abad183

View File

@ -83,6 +83,6 @@ def client_query(client):
def test_pytest_fixture_usage(client_query):
response = graphql_query("query { test }")
response = client_query("query { test }")
content = json.loads(response.content)
assert content == {"data": {"test": "Hello World"}}