From 5e5abbe2548a34585687adabb5ceadce87ee03c4 Mon Sep 17 00:00:00 2001 From: richard-dds Date: Tue, 19 Jun 2018 13:23:59 -0400 Subject: [PATCH] Fix Content-Type header in mock api client --- tests/mocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mocks.py b/tests/mocks.py index 5561c5aa..7e82d182 100644 --- a/tests/mocks.py +++ b/tests/mocks.py @@ -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)