diff options
Diffstat (limited to 'python/tests/codec010.py')
-rw-r--r-- | python/tests/codec010.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests/codec010.py b/python/tests/codec010.py index 65d4525758..bd3f875ac4 100644 --- a/python/tests/codec010.py +++ b/python/tests/codec010.py @@ -32,7 +32,7 @@ class CodecTest(TestCase): sc = StringCodec(self.spec) t.encode(sc, value) decoded = t.decode(sc) - assert decoded == value + assert decoded == value, "%s, %s" % (decoded, value) def testMapString(self): self.check("map", {"string": "this is a test"}) |