You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/ujson/files/ujson-1.35-test-deprication...

12 lines
369 B

--- ujson-1.35.orig/tests/tests.py 2017-04-14 18:14:36.298345782 -0700
+++ ujson-1.35/tests/tests.py 2017-04-14 18:14:47.899947795 -0700
@@ -702,7 +702,7 @@
output = ujson.encode(ObjectTest())
dec = ujson.decode(output)
- self.assertEquals(dec, {})
+ self.assertEqual(dec, {})
def test_toDict(self):
d = {"key": 31337}