From b14bc6e3b7e858980cf32e0dd6e94314f8c7da26 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 30 Oct 2003 00:15:17 +0000 Subject: [PATCH] changed testEmptyNest a slight bit. --- test/test_callbacks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test_callbacks.py b/test/test_callbacks.py index 73145dc51..d8a308a4c 100644 --- a/test/test_callbacks.py +++ b/test/test_callbacks.py @@ -256,9 +256,10 @@ class PrivmsgTestCase(ChannelPluginTestCase): self.assertRegexp('help firstrepeat firstcmd', 'FirstRepeat', 0) def testEmptyNest(self): - self.assertError('echo []') try: conf.replyWhenNotCommand = True + self.assertError('echo []') + conf.replyWhenNotCommand = False self.assertResponse('echo []', '[]') finally: conf.replyWhenNotCommand = False