Skip to content
This repository was archived by the owner on Mar 8, 2018. It is now read-only.

Commit 5405ff8

Browse files
committed
fix that new test. ./runtests.sh wasn't seeing the problem for some reason
1 parent b39e2da commit 5405ff8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/unit.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,9 @@ class IssueTwentySevenTest(unittest.TestCase):
336336
"https://github.com/rtyler/py-yajl/issues/27"
337337
def runTest(self):
338338
u = u'[{"data":"Podstawow\u0105 opiek\u0119 zdrowotn\u0105"}]'
339-
self.assertEqual(yajl.loads(yajl.dumps(u)), u)
339+
self.assertEqual(
340+
yajl.dumps(yajl.loads(u)),
341+
'[{"data":"Podstawow\\u0105 opiek\\u0119 zdrowotn\\u0105"}]')
340342

341343

342344
if __name__ == '__main__':

0 commit comments

Comments
 (0)