We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 35312e4 + 3f8854e commit 78a6031Copy full SHA for 78a6031
pandas/io/tests/test_json/test_ujson.py
@@ -92,17 +92,6 @@ def test_encodeDecodeLongDecimal(self):
92
encoded = ujson.dumps(sut, double_precision=15)
93
ujson.decode(encoded)
94
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
106
def test_decimalDecodeTestPrecise(self):
107
sut = {u'a': 4.56}
108
encoded = ujson.encode(sut)
0 commit comments