We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc8a930 commit 4cf1049Copy full SHA for 4cf1049
tests/test_rejson.py
@@ -28,7 +28,7 @@ def testJSONSetGetDelNonAsciiShouldSucceed(self):
28
"Test non-ascii JSONSet/Get/Del"
29
30
self.assertTrue(rj.jsonset('notascii', Path.rootPath(), 'hyvää-élève'))
31
- self.assertNotEqual('hyvää-élève', rj.jsonget('notascii'))
+ self.assertEqual('hyvää-élève', rj.jsonget('notascii'))
32
self.assertEqual('hyvää-élève', rj.jsonget('notascii', no_escape=True))
33
self.assertEqual(1, rj.jsondel('notascii'))
34
self.assertFalse(rj.exists('notascii'))
0 commit comments