summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_middleware.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_middleware.py b/tests/test_middleware.py
index 38ba09e9..9f9d3fd2 100644
--- a/tests/test_middleware.py
+++ b/tests/test_middleware.py
@@ -154,7 +154,7 @@ class XmlBodyMiddlewareTest(test.TestCase):
self.assertTrue(jsonutils.loads(req.body))
def test_json_unnaffected(self):
- """JSON-only requests should be unnaffected by the XML middleware."""
+ """JSON-only requests should be unaffected by the XML middleware."""
content_type = 'application/json'
body = '{"container": {"attribute": "value"}}'
req = make_request(body=body, content_type=content_type, method='POST')