diff options
Diffstat (limited to 'Lib/json/tests/test_indent.py')
-rw-r--r-- | Lib/json/tests/test_indent.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/json/tests/test_indent.py b/Lib/json/tests/test_indent.py index 6055162..cd608d9 100644 --- a/Lib/json/tests/test_indent.py +++ b/Lib/json/tests/test_indent.py @@ -36,6 +36,6 @@ class TestIndent(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) |