summaryrefslogtreecommitdiffstats
path: root/Lib/json/tests/test_separators.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/json/tests/test_separators.py')
-rw-r--r--Lib/json/tests/test_separators.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/json/tests/test_separators.py b/Lib/json/tests/test_separators.py
index 32db341..d5b92bd 100644
--- a/Lib/json/tests/test_separators.py
+++ b/Lib/json/tests/test_separators.py
@@ -37,6 +37,6 @@ class TestSeparators(TestCase):
h1 = json.loads(d1)
h2 = json.loads(d2)
- self.assertEquals(h1, h)
- self.assertEquals(h2, h)
- self.assertEquals(d2, expect)
+ self.assertEqual(h1, h)
+ self.assertEqual(h2, h)
+ self.assertEqual(d2, expect)