summaryrefslogtreecommitdiff
path: root/testtools/tests
diff options
context:
space:
mode:
Diffstat (limited to 'testtools/tests')
-rw-r--r--testtools/tests/test_content_type.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testtools/tests/test_content_type.py b/testtools/tests/test_content_type.py
index df149c9..f81718b 100644
--- a/testtools/tests/test_content_type.py
+++ b/testtools/tests/test_content_type.py
@@ -64,7 +64,7 @@ class TestBuiltinContentTypes(TestCase):
# The JSON content type represents implictly UTF-8 application/json.
self.assertThat(JSON.type, Equals('application'))
self.assertThat(JSON.subtype, Equals('json'))
- self.assertThat(JSON.parameters, Equals({}))
+ self.assertThat(JSON.parameters, Equals({'charset': 'utf8'}))
self.assertThat(JSON.is_text(), Equals(True))