summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klishin <mklishin@pivotal.io>2019-10-22 02:47:50 +0300
committerMichael Klishin <mklishin@pivotal.io>2019-10-22 02:48:13 +0300
commit39b57573df9ab26d98724235b1be12a9773e6c11 (patch)
tree3650164dffe280607115759193ace4f12628ef19
parentdd1918c906a1baa37b4e33e94d39be8cf44aa5a5 (diff)
downloadrabbitmq-server-git-39b57573df9ab26d98724235b1be12a9773e6c11.tar.gz
(cherry picked from commit 1df9805b4ad1d6ce50c812485d85baa6c946cdf0)
-rw-r--r--test/unit_inbroker_non_parallel_SUITE.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit_inbroker_non_parallel_SUITE.erl b/test/unit_inbroker_non_parallel_SUITE.erl
index d03cb66a04..7e3e1cfe7a 100644
--- a/test/unit_inbroker_non_parallel_SUITE.erl
+++ b/test/unit_inbroker_non_parallel_SUITE.erl
@@ -589,7 +589,7 @@ head_message_timestamp1(_Config) ->
%% Set up event receiver for queue
dummy_event_receiver:start(self(), [node()], [queue_stats]),
- %% the head timestamp field is empty when queue is empty empty
+ %% the head timestamp field is empty when the queue is empty
test_queue_statistics_receive_event(QPid,
fun (E) ->
(proplists:get_value(name, E) == QRes)
@@ -602,7 +602,7 @@ head_message_timestamp1(_Config) ->
after ?TIMEOUT -> throw(failed_to_receive_tx_select_ok)
end,
- %% Publish two messages and check that the timestamp is that of first message
+ %% Publish two messages and check that the timestamp is that of the first message
rabbit_channel:do(Ch, #'basic.publish'{exchange = <<"">>,
routing_key = QName},
rabbit_basic:build_content(#'P_basic'{timestamp = 1}, <<"">>)),
@@ -639,7 +639,7 @@ head_message_timestamp1(_Config) ->
(proplists:get_value(head_message_timestamp, E) == '')
end),
- %% Teardown
+ %% Tear down
rabbit_channel:do(Ch, #'queue.delete'{queue = QName}),
rabbit_channel:shutdown(Ch),
dummy_event_receiver:stop(),