mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-07-11 08:42:32 +03:00
Updated test.
This commit is contained in:
parent
fd9209658d
commit
ac9abad183
|
@ -83,6 +83,6 @@ def client_query(client):
|
||||||
|
|
||||||
|
|
||||||
def test_pytest_fixture_usage(client_query):
|
def test_pytest_fixture_usage(client_query):
|
||||||
response = graphql_query("query { test }")
|
response = client_query("query { test }")
|
||||||
content = json.loads(response.content)
|
content = json.loads(response.content)
|
||||||
assert content == {"data": {"test": "Hello World"}}
|
assert content == {"data": {"test": "Hello World"}}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user