From 8fb5d7637bcb5b8108ebd59246615a6f01ea43fd Mon Sep 17 00:00:00 2001 From: Nikolai R Kristiansen Date: Fri, 31 Jul 2020 16:24:01 +0200 Subject: [PATCH] python 2.7 --- 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 4ed0bec..f5a8b05 100644 --- a/graphene_django/tests/test_utils.py +++ b/graphene_django/tests/test_utils.py @@ -76,7 +76,7 @@ def test_graphql_query_case_op_name(post_mock): @pytest.fixture def client_query(client): def func(*args, **kwargs): - return graphql_query(*args, **kwargs, client=client) + return graphql_query(*args, client=client, **kwargs) return func