Skip to content

Commit 78a6031

Browse files
committed
Merge pull request #4238 from Komnomnomnom/ujson-fudgy-test
TST: remove fudgy ujson test #4223
2 parents 35312e4 + 3f8854e commit 78a6031

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

pandas/io/tests/test_json/test_ujson.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -92,17 +92,6 @@ def test_encodeDecodeLongDecimal(self):
9292
encoded = ujson.dumps(sut, double_precision=15)
9393
ujson.decode(encoded)
9494

95-
def test_decimalDecodeTest(self):
96-
sut = {u'a': 4.56}
97-
encoded = ujson.encode(sut)
98-
decoded = ujson.decode(encoded)
99-
100-
# Roundtrip works on 32-bit / fails on 64-bit
101-
if sys.maxsize < 2**32:
102-
self.assertEqual(sut, decoded)
103-
else:
104-
self.assertNotEqual(sut, decoded)
105-
10695
def test_decimalDecodeTestPrecise(self):
10796
sut = {u'a': 4.56}
10897
encoded = ujson.encode(sut)

0 commit comments

Comments
 (0)