From 635511f7e691d7b2896fa5eae4a20946a75fb94e Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Thu, 22 May 2014 18:56:58 +0300 Subject: [PATCH] fix previous commit --- test/test_callbacks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_callbacks.py b/test/test_callbacks.py index 641249a63..ad0cee3aa 100644 --- a/test/test_callbacks.py +++ b/test/test_callbacks.py @@ -243,7 +243,7 @@ class FunctionsTestCase(SupyTestCase): nonChannelMsg = ircmsgs.privmsg('supybot', 'bar baz', prefix=prefix) self.assertEqual(ircmsgs.notice(nonChannelMsg.nick, 'foo'), callbacks.reply(channelMsg, 'foo', private=True)) - self.assertEqual(ircmsgs.privmsg(nonChannelMsg.nick, 'foo'), + self.assertEqual(ircmsgs.notice(nonChannelMsg.nick, 'foo'), callbacks.reply(nonChannelMsg, 'foo')) self.assertEqual(ircmsgs.privmsg(channelMsg.args[0], '%s: foo' % channelMsg.nick),