From 0c8ee83f92bd625e9a3d0e3721413d145380740e Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 11 Aug 2003 05:10:36 +0000 Subject: [PATCH] Reduced the number of rot13 asserts to 10. --- test/test_FunCommands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_FunCommands.py b/test/test_FunCommands.py index 317a38e7a..8c8a40a3d 100644 --- a/test/test_FunCommands.py +++ b/test/test_FunCommands.py @@ -39,5 +39,5 @@ class FunCommandsTest(PluginTestCase): self.assertResponse('binary A', '01000001') def testRot13(self): - for s in nicks: + for s in nicks[:10]: # 10 is probably enough. self.assertResponse('rot13 [rot13 %s]' % s, s)