From 00ed41f8c4cc896ad0e33f0392557856844ffcfe Mon Sep 17 00:00:00 2001 From: bwignall Date: Mon, 19 May 2014 20:57:52 -0400 Subject: [PATCH] CLN: Deprecation of assert_ #7131: Fix two instances of assertEquals that naive grepping did not find --- pandas/io/tests/test_json/test_ujson.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/io/tests/test_json/test_ujson.py b/pandas/io/tests/test_json/test_ujson.py index 469ea9f1925a2..32057f9ffd35c 100644 --- a/pandas/io/tests/test_json/test_ujson.py +++ b/pandas/io/tests/test_json/test_ujson.py @@ -629,11 +629,11 @@ def test_decodeDictWithNoValue(self): def test_decodeNumericIntPos(self): input = "31337" - self.assertEquals (31337, ujson.decode(input)) + self.assertEqual(31337, ujson.decode(input)) def test_decodeNumericIntNeg(self): input = "-31337" - self.assertEquals (-31337, ujson.decode(input)) + self.assertEqual(-31337, ujson.decode(input)) def test_encodeUnicode4BytesUTF8Fail(self): _skip_if_python_ver(3)