Skip to content

Commit 3d52ed7

Browse files
committed
Apply patch where test name was changed
1 parent bc15ef8 commit 3d52ed7

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

Lib/test/test_itertools.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -663,6 +663,7 @@ def test_count(self):
663663
#check proper internal error handling for large "step' sizes
664664
count(1, maxsize+5); sys.exc_info()
665665

666+
@unittest.expectedFailure # TODO: RUSTPYTHON
666667
@pickle_deprecated
667668
def test_count_with_step(self):
668669
self.assertEqual(lzip('abc',count(2,3)), [('a', 2), ('b', 5), ('c', 8)])
@@ -1943,10 +1944,6 @@ def test_immutable_types(self):
19431944
with self.assertRaisesRegex(TypeError, "immutable"):
19441945
tp.foobar = 1
19451946

1946-
@unittest.expectedFailure # TODO: RUSTPYTHON
1947-
def test_count_with_stride(self):
1948-
return super().test_count_with_stride()
1949-
19501947

19511948
class TestExamples(unittest.TestCase):
19521949

0 commit comments

Comments
 (0)