diff --git a/graphene_django/utils/testing.py b/graphene_django/utils/testing.py index 5a02025..8a9b994 100644 --- a/graphene_django/utils/testing.py +++ b/graphene_django/utils/testing.py @@ -55,7 +55,10 @@ class GraphQLTestCase(TestCase): body["variables"] = {"input": input_data} if headers: resp = self._client.post( - self.GRAPHQL_URL, json.dumps(body), content_type="application/json", **headers + self.GRAPHQL_URL, + json.dumps(body), + content_type="application/json", + **headers ) else: resp = self._client.post(