Skip to content

Commit 86bd584

Browse files
author
Petr Matousek
committed
Revert "FIX: test workaround for ENTMQCL-1364"
This reverts commit 9dbc90b.
1 parent c020597 commit 86bd584

1 file changed

Lines changed: 4 additions & 14 deletions

File tree

tests/test_integration.py

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -824,8 +824,7 @@ def test_send_receive_on_release(self):
824824

825825
# running sender and retrieving amount of messages sent
826826
sent = self.run_sender(['-b', '0.0.0.0:5673/examples', '--log-msgs', 'dict',
827-
'-c', "%s" % TOTAL_MSGS, '--timeout', '30',
828-
'--on-release', 'retry'])
827+
'-c', "%s" % TOTAL_MSGS, '--timeout', '30', '--on-release', 'retry'])
829828
sent_msgs = len(sent)
830829

831830
# counting received messages (accepted)
@@ -867,10 +866,7 @@ def test_p2p_snd_rcv_subprocess(self):
867866
""" tests point-to-point delivery """
868867
rcv = subprocess.Popen(['../cli_proton_python/receiver.py', '-b', 'localhost:8888',
869868
'-c', '1', '--recv-listen', '--log-msgs', 'dict'],
870-
# TODO uncomment when the following issue is fixed:
871-
# https://issues.jboss.org/browse/ENTMQCL-1364
872-
# stderr=subprocess.STDOUT,
873-
stdout=subprocess.PIPE,
869+
stderr=subprocess.STDOUT, stdout=subprocess.PIPE,
874870
universal_newlines=True)
875871
time.sleep(0.1)
876872
snd = subprocess.Popen(['../cli_proton_python/sender.py', '-b', 'localhost:8888',
@@ -891,10 +887,7 @@ def test_p2p_snd_rcv_subprocess_sasl_enabled(self):
891887
rcv = subprocess.Popen(['../cli_proton_python/receiver.py', '-b', 'localhost:8888',
892888
'-c', '1', '--recv-listen', '--log-msgs', 'dict',
893889
'--conn-sasl-enabled', 'true'],
894-
# TODO uncomment when the following issue is fixed:
895-
# https://issues.jboss.org/browse/ENTMQCL-1364
896-
# stderr=subprocess.STDOUT,
897-
stdout=subprocess.PIPE,
890+
stderr=subprocess.STDOUT, stdout=subprocess.PIPE,
898891
universal_newlines=True)
899892
time.sleep(0.1)
900893
snd = subprocess.Popen(['../cli_proton_python/sender.py', '-b', 'localhost:8888',
@@ -916,10 +909,7 @@ def test_p2p_snd_rcv_subprocess_sasl_disabled(self):
916909
rcv = subprocess.Popen(['../cli_proton_python/receiver.py', '-b', 'localhost:8888',
917910
'-c', '1', '--recv-listen', '--log-msgs', 'dict',
918911
'--conn-sasl-enabled', 'false'],
919-
# TODO uncomment when the following issue is fixed:
920-
# https://issues.jboss.org/browse/ENTMQCL-1364
921-
# stderr=subprocess.STDOUT,
922-
stdout=subprocess.PIPE,
912+
stderr=subprocess.STDOUT, stdout=subprocess.PIPE,
923913
universal_newlines=True)
924914
time.sleep(0.1)
925915
snd = subprocess.Popen(['../cli_proton_python/sender.py', '-b', 'localhost:8888',

0 commit comments

Comments
 (0)