Show More
@@ -342,8 +342,8 b' class TestView(ClusterTestCase, ParametricTestCase):' | |||||
342 | arr = range(101) |
|
342 | arr = range(101) | |
343 | # ensure it will be an iterator, even in Python 3 |
|
343 | # ensure it will be an iterator, even in Python 3 | |
344 | it = iter(arr) |
|
344 | it = iter(arr) | |
345 |
r = view.map_sync(lambda x:x, |
|
345 | r = view.map_sync(lambda x: x, it) | |
346 |
self.assertEqual(r, list( |
|
346 | self.assertEqual(r, list(it)) | |
347 |
|
347 | |||
348 | @skip_without('numpy') |
|
348 | @skip_without('numpy') | |
349 | def test_map_numpy(self): |
|
349 | def test_map_numpy(self): |
General Comments 0
You need to be logged in to leave comments.
Login now