Skip to content

Commit 7b041fe

Browse files
arw2019WillAyd
andauthored
Update pandas/tests/io/json/test_ujson.py
Co-authored-by: William Ayd <[email protected]>
1 parent e4df0f8 commit 7b041fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/json/test_ujson.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ def test_encode_long_conversion(self):
560560
assert output == json.dumps(long_input)
561561
assert long_input == ujson.decode(output)
562562

563-
@pytest.mark.parametrize("bigNum", [sys.maxsize + 1, -(sys.maxsize + 1)])
563+
@pytest.mark.parametrize("bigNum", [sys.maxsize + 1, -(sys.maxsize + 2)])
564564
def test_dumps_ints_larger_than_maxsize(self, bigNum):
565565
# GH34395
566566
bigNum = sys.maxsize + 1

0 commit comments

Comments
 (0)