summaryrefslogtreecommitdiff
path: root/python/subunit/tests/test_details.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/subunit/tests/test_details.py')
-rw-r--r--python/subunit/tests/test_details.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/subunit/tests/test_details.py b/python/subunit/tests/test_details.py
index 2700d4a..41c3212 100644
--- a/python/subunit/tests/test_details.py
+++ b/python/subunit/tests/test_details.py
@@ -51,7 +51,8 @@ class TestSimpleDetails(unittest.TestCase):
traceback = ""
expected = {}
expected['traceback'] = content.Content(
- content_type.ContentType("text", "x-traceback"),
+ content_type.ContentType("text", "x-traceback",
+ {'charset': 'utf8'}),
lambda:[""])
found = parser.get_details()
self.assertEqual(expected.keys(), found.keys())