Commit 142355c5 authored by Hanno Schlichting's avatar Hanno Schlichting

Whitespace

parent 72376e24
......@@ -81,6 +81,7 @@ class TestLazyCat(BaseSequenceTest):
class TestLazyMap(TestLazyCat):
def _createLSeq(self, *seq):
return self._createLMap(lambda x: x, *seq)
......@@ -102,6 +103,7 @@ class TestLazyMap(TestLazyCat):
class TestLazyFilter(TestLazyCat):
def _createLSeq(self, *seq):
return self._createLFilter(lambda x: True, *seq)
......@@ -140,6 +142,7 @@ class TestLazyFilter(TestLazyCat):
class TestLazyMop(TestLazyCat):
def _createLSeq(self, *seq):
return self._createLMop(lambda x: x, *seq)
......@@ -187,6 +190,7 @@ class TestLazyMop(TestLazyCat):
class TestLazyValues(BaseSequenceTest):
def _createLValues(self, seq):
from Products.ZCatalog.Lazy import LazyValues
return LazyValues(seq)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment