python 2.7

This commit is contained in:
Nikolai R Kristiansen 2020-07-31 16:24:01 +02:00
parent 091772da73
commit 8fb5d7637b
No known key found for this signature in database
GPG Key ID: 1A24E7511E55EF87

View File

@ -76,7 +76,7 @@ def test_graphql_query_case_op_name(post_mock):
@pytest.fixture @pytest.fixture
def client_query(client): def client_query(client):
def func(*args, **kwargs): def func(*args, **kwargs):
return graphql_query(*args, **kwargs, client=client) return graphql_query(*args, client=client, **kwargs)
return func return func