File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
deps/rabbitmq_stomp/test/python_SUITE_data/src Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ def test_bad_command(self):
182
182
def test_broadcast (self ):
183
183
''' Single message should be delivered to two consumers:
184
184
amq.topic --routing_key--> first_queue --> first_connection
185
- \--routing_key--> second_queue--> second_connection
185
+ \\ --routing_key--> second_queue--> second_connection
186
186
'''
187
187
subscribe = ( 'SUBSCRIBE\n '
188
188
'id: XsKNhAf\n '
@@ -336,4 +336,4 @@ def test_message_in_packets(self):
336
336
modules = [
337
337
__name__
338
338
]
339
- test_runner .run_unittests (modules )
339
+ test_runner .run_unittests (modules )
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ def test_exchange_dest(self):
36
36
body = 'Hello World!' )
37
37
38
38
# check if we receive the message from the STOMP subscription
39
- self .assertTrue (self .listener .wait (2 ), "initial message not received" )
39
+ self .assertTrue (self .listener .wait (5 ), "initial message not received" )
40
40
self .assertEqual (1 , len (self .listener .messages ))
41
41
42
42
self .conn .disconnect ()
@@ -64,7 +64,7 @@ def test_topic_dest(self):
64
64
body = 'Hello World!' )
65
65
66
66
# check if we receive the message from the STOMP subscription
67
- self .assertTrue (self .listener .wait (2 ), "initial message not received" )
67
+ self .assertTrue (self .listener .wait (5 ), "initial message not received" )
68
68
self .assertEqual (1 , len (self .listener .messages ))
69
69
70
70
self .conn .disconnect ()
@@ -76,4 +76,4 @@ def test_topic_dest(self):
76
76
modules = [
77
77
__name__
78
78
]
79
- test_runner .run_unittests (modules )
79
+ test_runner .run_unittests (modules )
You can’t perform that action at this time.
0 commit comments