Skip to content

Commit 861aa4d

Browse files
authored
Merge pull request RustPython#2118 from tobark/test-unexpected-success
unexpected success on local
2 parents ad08843 + 499a86e commit 861aa4d

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Lib/test/test_iter.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,10 @@ def test_nested_comprehensions_for(self):
151151
self.assertEqual(res, TRIPLETS)
152152

153153
# Test a class with __iter__ in a for loop
154-
# TODO: RUSTPYTHON
155-
@unittest.expectedFailure
156154
def test_iter_class_for(self):
157155
self.check_for_loop(IteratingSequenceClass(10), list(range(10)))
158156

159157
# Test a class with __iter__ with explicit iter()
160-
# TODO: RUSTPYTHON
161-
@unittest.expectedFailure
162158
def test_iter_class_iter(self):
163159
self.check_iterator(iter(IteratingSequenceClass(10)), list(range(10)))
164160

0 commit comments

Comments
 (0)