Skip to content

Commit 4cf1049

Browse files
committed
fix test no_escape=True is not needed any more behviour on RedisJSON
RedisJSON/RedisJSON#168
1 parent fc8a930 commit 4cf1049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_rejson.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def testJSONSetGetDelNonAsciiShouldSucceed(self):
2828
"Test non-ascii JSONSet/Get/Del"
2929

3030
self.assertTrue(rj.jsonset('notascii', Path.rootPath(), 'hyvää-élève'))
31-
self.assertNotEqual('hyvää-élève', rj.jsonget('notascii'))
31+
self.assertEqual('hyvää-élève', rj.jsonget('notascii'))
3232
self.assertEqual('hyvää-élève', rj.jsonget('notascii', no_escape=True))
3333
self.assertEqual(1, rj.jsondel('notascii'))
3434
self.assertFalse(rj.exists('notascii'))

0 commit comments

Comments
 (0)