summaryrefslogtreecommitdiff
path: root/python/subunit/tests/test_details.py
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2010-06-21 07:49:32 +1200
committerRobert Collins <robertc@robertcollins.net>2010-06-21 07:49:32 +1200
commit62523dfa4e108995245c53b211a077edee1b586f (patch)
treec87f2559054365bdb6b2fd708bc6cf5fbfcf6937 /python/subunit/tests/test_details.py
parent348614019d0d8d88914286505a0dcdf1eac92a2f (diff)
downloadsubunit-git-62523dfa4e108995245c53b211a077edee1b586f.tar.gz
Unbreak tests in trunk. Oops.
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())