From 9e645ed6452d0f1630214fc420b8d67109df421e Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Mon, 25 May 2015 03:11:55 +0200 Subject: [PATCH] Fix non-determinism in tests (again). --- test/test_irclib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_irclib.py b/test/test_irclib.py index 033885d57..f0690df99 100644 --- a/test/test_irclib.py +++ b/test/test_irclib.py @@ -400,7 +400,7 @@ class IrcTestCase(SupyTestCase): self.assertEqual(m.args[0], 'REQ', m) m = self.irc.takeMsg() self.failUnless(m.command == 'CAP', 'Expected CAP, got %r.' % m) - self.assertEqual(m.args, ('REQ', 'extended-join'), m) + self.assertEqual(m.args[0], 'REQ', m) m = self.irc.takeMsg() self.failUnless(m.command == 'CAP', 'Expected CAP, got %r.' % m) self.assertEqual(m.args, ('END',), m)