Fix Content-Type header in mock api client

This commit is contained in:
richard-dds 2018-06-19 13:23:59 -04:00
parent f6a2ddbd77
commit 5e5abbe254

View File

@ -32,5 +32,5 @@ class MockApiClient(ApiClient):
response = HTTPResponse(
request=HTTPRequest(path, verb),
code=200,
headers={'Content-Type': 'application-json'})
headers={'Content-Type': 'application/json'})
return self.adapt_response(response)