removed extra parenthesis typo

This commit is contained in:
Monte Mishkin 2015-11-13 00:30:12 -08:00
parent ac58ee15a4
commit 3571f053bb

View File

@ -104,7 +104,7 @@ def test_client_post_good_query_json(settings, client):
def test_client_post_good_query_graphql(settings, client):
settings.ROOT_URLCONF = 'tests.contrib_django.test_urls'
response = client.post(
'/graphql', '{ headline }'), 'application/graphql')
'/graphql', '{ headline }', 'application/graphql')
json_response = format_response(response)
expected_json = {
'data': {