Reduced the number of rot13 asserts to 10.

This commit is contained in:
Jeremy Fincher 2003-08-11 05:10:36 +00:00
parent 1a05dc957b
commit 0c8ee83f92

View File

@ -39,5 +39,5 @@ class FunCommandsTest(PluginTestCase):
self.assertResponse('binary A', '01000001') self.assertResponse('binary A', '01000001')
def testRot13(self): def testRot13(self):
for s in nicks: for s in nicks[:10]: # 10 is probably enough.
self.assertResponse('rot13 [rot13 %s]' % s, s) self.assertResponse('rot13 [rot13 %s]' % s, s)