Stop enforcing csrf checks in GraphQLTestCase

This commit is contained in:
Emil Goldsmith Olesen 2019-06-06 17:08:20 +02:00 committed by GitHub
parent 0916e03cb3
commit e7e25605ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ class GraphQLTestCase(TestCase):
"Variable GRAPHQL_SCHEMA not defined in GraphQLTestCase." "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): def query(self, query, op_name=None, input_data=None):
""" """