From bcda616771fdaf84abd4fc024fc0199947501975 Mon Sep 17 00:00:00 2001 From: snowapril Date: Tue, 25 Jan 2022 00:19:49 +0900 Subject: [PATCH] Remove expectedFailure decorator on success test Signed-off-by: snowapril --- Lib/test/test_random.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Lib/test/test_random.py b/Lib/test/test_random.py index 4816b559e..e7028504e 100644 --- a/Lib/test/test_random.py +++ b/Lib/test/test_random.py @@ -457,11 +457,6 @@ else: class SystemRandom_TestBasicOps(TestBasicOps, unittest.TestCase): gen = random.SystemRandom() - # TODO: RUSTPYTHON, OverflowError: Python int too large to convert to Rust usize - @unittest.expectedFailure - def test_randbytes(self): # TODO: RUSTPYTHON, remove when this passes - super().test_randbytes() # TODO: RUSTPYTHON, remove when this passes - def test_autoseed(self): # Doesn't need to do anything except not fail self.gen.seed()