From ac9abad18329525654ae93bd8c2f5ed14ec20e0f Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Sat, 6 Feb 2021 13:52:39 -0500 Subject: [PATCH] Updated test. --- graphene_django/tests/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"}}