Skip to content

Commit 9b6155c

Browse files
committed
Unmark passing test
1 parent 0f1cded commit 9b6155c

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

Lib/test/test_statistics.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2645,8 +2645,6 @@ def test_cdf(self):
26452645
self.assertEqual(X.cdf(float('Inf')), 1.0)
26462646
self.assertTrue(math.isnan(X.cdf(float('NaN'))))
26472647

2648-
# TODO: RUSTPYTHON
2649-
@unittest.expectedFailure
26502648
@support.skip_if_pgo_task
26512649
def test_inv_cdf(self):
26522650
NormalDist = self.module.NormalDist
@@ -2920,6 +2918,11 @@ def setUp(self):
29202918
def tearDown(self):
29212919
sys.modules['statistics'] = statistics
29222920

2921+
# TODO: RUSTPYTHON, ValueError: math domain error
2922+
@unittest.expectedFailure
2923+
def test_inv_cdf(self): # TODO: RUSTPYTHON, remove when this passes
2924+
super().test_inv_cdf() # TODO: RUSTPYTHON, remove when this passes
2925+
29232926

29242927
@unittest.skipUnless(c_statistics, 'requires _statistics')
29252928
class TestNormalDistC(unittest.TestCase, TestNormalDist):

0 commit comments

Comments
 (0)