Stop enforcing csrf checks in GraphQLTestCase (#658)

This commit is contained in:
Emil Goldsmith Olesen 2019-06-10 01:30:48 +02:00 committed by Jonathan Kim
parent c90c27f364
commit 3cde872e28

View File

@ -22,7 +22,7 @@ class GraphQLTestCase(TestCase):
"Variable GRAPHQL_SCHEMA not defined in GraphQLTestCase."
)
cls._client = Client(cls.GRAPHQL_SCHEMA)
cls._client = Client()
def query(self, query, op_name=None, input_data=None):
"""