summaryrefslogtreecommitdiff
path: root/tests/test_stream_handlers.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-11-21 22:03:43 -0800
committerLance Stout <lancestout@gmail.com>2011-11-21 22:03:43 -0800
commit2d610dfdc8738cb8c94341dd1bf80533ec4faa7a (patch)
treeedb52b56c8f00cb3bc20a0d60791457a068e64ea /tests/test_stream_handlers.py
parent2b0a05ee32a28659b7358685bbe86b6bc20124d9 (diff)
downloadslixmpp-2d610dfdc8738cb8c94341dd1bf80533ec4faa7a.tar.gz
slixmpp-2d610dfdc8738cb8c94341dd1bf80533ec4faa7a.tar.bz2
slixmpp-2d610dfdc8738cb8c94341dd1bf80533ec4faa7a.tar.xz
slixmpp-2d610dfdc8738cb8c94341dd1bf80533ec4faa7a.zip
Fix stream handler test for multiple handlers to exist properly.
Diffstat (limited to 'tests/test_stream_handlers.py')
-rw-r--r--tests/test_stream_handlers.py1
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)