From 919f8c309d77cbb56a1b1e3c7e2ef144f4dcb7d8 Mon Sep 17 00:00:00 2001 From: Varun Dey Date: Tue, 25 Aug 2020 23:21:03 +0530 Subject: [PATCH] Fix missing colon in function definition --- docs/testing.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/testing.rst b/docs/testing.rst index 23acef2d4..686200645 100644 --- a/docs/testing.rst +++ b/docs/testing.rst @@ -94,7 +94,7 @@ To use pytest define a simple fixture using the query helper below from graphene_django.utils.testing import graphql_query @pytest.fixture - def client_query(client) + def client_query(client): def func(*args, **kwargs): return graphql_query(*args, **kwargs, client=client) @@ -115,4 +115,4 @@ To use pytest define a simple fixture using the query helper below ) content = json.loads(response.content) - assert 'errors' not in content \ No newline at end of file + assert 'errors' not in content