diff --git a/graphene_django/tests/test_utils.py b/graphene_django/tests/test_utils.py index d895f46..adad00e 100644 --- a/graphene_django/tests/test_utils.py +++ b/graphene_django/tests/test_utils.py @@ -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"}}