Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions deps/rabbitmq_stomp/test/python_SUITE_data/src/parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def test_bad_command(self):
def test_broadcast(self):
''' Single message should be delivered to two consumers:
amq.topic --routing_key--> first_queue --> first_connection
\--routing_key--> second_queue--> second_connection
\\--routing_key--> second_queue--> second_connection
'''
subscribe=( 'SUBSCRIBE\n'
'id: XsKNhAf\n'
Expand Down Expand Up @@ -336,4 +336,4 @@ def test_message_in_packets(self):
modules = [
__name__
]
test_runner.run_unittests(modules)
test_runner.run_unittests(modules)
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def test_exchange_dest(self):
body='Hello World!')

# check if we receive the message from the STOMP subscription
self.assertTrue(self.listener.wait(2), "initial message not received")
self.assertTrue(self.listener.wait(5), "initial message not received")
self.assertEqual(1, len(self.listener.messages))

self.conn.disconnect()
Expand Down Expand Up @@ -64,7 +64,7 @@ def test_topic_dest(self):
body='Hello World!')

# check if we receive the message from the STOMP subscription
self.assertTrue(self.listener.wait(2), "initial message not received")
self.assertTrue(self.listener.wait(5), "initial message not received")
self.assertEqual(1, len(self.listener.messages))

self.conn.disconnect()
Expand All @@ -76,4 +76,4 @@ def test_topic_dest(self):
modules = [
__name__
]
test_runner.run_unittests(modules)
test_runner.run_unittests(modules)