diff options
author | Lance Stout <lancestout@gmail.com> | 2011-11-21 22:03:43 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-11-21 22:03:43 -0800 |
commit | 2d610dfdc8738cb8c94341dd1bf80533ec4faa7a (patch) | |
tree | edb52b56c8f00cb3bc20a0d60791457a068e64ea | |
parent | 2b0a05ee32a28659b7358685bbe86b6bc20124d9 (diff) | |
download | slixmpp-2d610dfdc8738cb8c94341dd1bf80533ec4faa7a.tar.gz slixmpp-2d610dfdc8738cb8c94341dd1bf80533ec4faa7a.tar.bz2 slixmpp-2d610dfdc8738cb8c94341dd1bf80533ec4faa7a.tar.xz slixmpp-2d610dfdc8738cb8c94341dd1bf80533ec4faa7a.zip |
Fix stream handler test for multiple handlers to exist properly.
-rw-r--r-- | tests/test_stream_handlers.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_stream_handlers.py b/tests/test_stream_handlers.py index 6f3ea67b..7fd4e648 100644 --- a/tests/test_stream_handlers.py +++ b/tests/test_stream_handlers.py @@ -168,7 +168,6 @@ class TestHandlers(SleekTest): def handler_3(msg): msg.reply("Handler 3: %s" % msg['body']).send() - self.stream_start() self.xmpp.add_event_handler('message', handler_1) self.xmpp.add_event_handler('message', handler_2) self.xmpp.add_event_handler('message', handler_3) |