##// END OF EJS Templates
Fix test_map_iterable() again
Samuel Ainsworth -
Show More
@@ -343,7 +343,7 b' class TestView(ClusterTestCase, ParametricTestCase):'
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, it)
345 r = view.map_sync(lambda x: x, it)
346 self.assertEqual(r, list(it))
346 self.assertEqual(r, list(arr))
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