[Zope3-checkins]
SVN: Zope3/branches/philikon-dtml-sync/src/zope/sequencesort/tests/testssort.py
minor cleanup
Philipp von Weitershausen
philikon at philikon.de
Tue Jan 10 12:30:25 EST 2006
Log message for revision 41253:
minor cleanup
Changed:
U Zope3/branches/philikon-dtml-sync/src/zope/sequencesort/tests/testssort.py
-=-
Modified: Zope3/branches/philikon-dtml-sync/src/zope/sequencesort/tests/testssort.py
===================================================================
--- Zope3/branches/philikon-dtml-sync/src/zope/sequencesort/tests/testssort.py 2006-01-10 17:29:14 UTC (rev 41252)
+++ Zope3/branches/philikon-dtml-sync/src/zope/sequencesort/tests/testssort.py 2006-01-10 17:30:25 UTC (rev 41253)
@@ -21,24 +21,24 @@
"""Test zope.sequencesort.sort()
"""
- def test1( self ):
+ def test1(self):
assert res1==ssort.sort(wordlist)
- def test2( self ):
+ def test2(self):
assert res2==ssort.sort(wordlist, (("key",),), mapping=1)
- def test3( self ):
+ def test3(self):
assert res3==ssort.sort(wordlist, (("key", "cmp"),), mapping=1)
- def test4( self ):
+ def test4(self):
assert res4==ssort.sort(wordlist, (("key", "cmp", "desc"),),
mapping=1)
- def test5( self ):
+ def test5(self):
assert res5==ssort.sort(wordlist, (("weight",), ("key",)),
mapping=1)
- def test6( self ):
+ def test6(self):
assert res6==ssort.sort(wordlist,
(("weight",),
("key", "nocase", "desc")),
More information about the Zope3-Checkins
mailing list