Skip to content

Commit f224cea

Browse files
committed
Unskip tests
1 parent af531a5 commit f224cea

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Lib/test/test_float.py

-4
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,6 @@ def test_underscores(self):
8989
# Check that we handle bytes values correctly.
9090
self.assertRaises(ValueError, float, b'0_.\xff9')
9191

92-
# TODO: RUSTPYTHON
93-
@unittest.expectedFailure
9492
def test_non_numeric_input_types(self):
9593
# Test possible non-numeric types for the argument x, including
9694
# subclasses of the explicitly documented accepted types.
@@ -120,8 +118,6 @@ class CustomByteArray(bytearray): pass
120118
with self.assertRaisesRegex(ValueError, "could not convert"):
121119
float(f(b'A' * 0x10))
122120

123-
# TODO: RUSTPYTHON
124-
@unittest.expectedFailure
125121
def test_float_memoryview(self):
126122
self.assertEqual(float(memoryview(b'12.3')[1:4]), 2.3)
127123
self.assertEqual(float(memoryview(b'12.3\x00')[1:4]), 2.3)

0 commit comments

Comments
 (0)