Skip to content

Commit 12cec84

Browse files
committed
Merge pull request #7182 from bwignall/issue7131_assertEquals
CLN: Deprecation of assert_
2 parents 2bdfcff + 00ed41f commit 12cec84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/io/tests/test_json/test_ujson.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -629,11 +629,11 @@ def test_decodeDictWithNoValue(self):
629629

630630
def test_decodeNumericIntPos(self):
631631
input = "31337"
632-
self.assertEquals (31337, ujson.decode(input))
632+
self.assertEqual(31337, ujson.decode(input))
633633

634634
def test_decodeNumericIntNeg(self):
635635
input = "-31337"
636-
self.assertEquals (-31337, ujson.decode(input))
636+
self.assertEqual(-31337, ujson.decode(input))
637637

638638
def test_encodeUnicode4BytesUTF8Fail(self):
639639
_skip_if_python_ver(3)

0 commit comments

Comments
 (0)