summaryrefslogtreecommitdiff
path: root/test
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:47:50 +0300
commit1df9805b4ad1d6ce50c812485d85baa6c946cdf0 (patch)
treeb5f0d9236cee225d586c9c915fe8e13a4e51b7f5 /test
parent4eff13c961ba033c686b84fe8c914fef0376a446 (diff)
downloadrabbitmq-server-git-1df9805b4ad1d6ce50c812485d85baa6c946cdf0.tar.gz
Typos
Diffstat (limited to 'test')
-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 4038eb9a9c..425ccab183 100644
--- a/test/unit_inbroker_non_parallel_SUITE.erl
+++ b/test/unit_inbroker_non_parallel_SUITE.erl
@@ -604,7 +604,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)
@@ -617,7 +617,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}, <<"">>)),
@@ -654,7 +654,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(),