Skip to content

Commit ab29c48

Browse files
committed
test: A few minor style fixes
References #1136 [#136613953]
1 parent 8aaf538 commit ab29c48

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

Makefile

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,17 @@ ERLANG_MK_COMMIT = rabbitmq-tmp
145145
include rabbitmq-components.mk
146146
include erlang.mk
147147

148-
SLOW_CT_SUITES := $(sort cluster_rename clustering_management dynamic_ha eager_sync health_check partitions priority_queue simple_ha queue_master_location backing_queue)
149-
FAST_CT_SUITES := $(filter-out $(SLOW_CT_SUITES),$(CT_SUITES))
148+
SLOW_CT_SUITES := backing_queue \
149+
cluster_rename \
150+
clustering_management \
151+
dynamic_ha \
152+
eager_sync \
153+
health_check \
154+
partitions \
155+
priority_queue \
156+
queue_master_location \
157+
simple_ha
158+
FAST_CT_SUITES := $(filter-out $(sort $(SLOW_CT_SUITES)),$(CT_SUITES))
150159

151160
ct-fast: CT_SUITES = $(FAST_CT_SUITES)
152161
ct-slow: CT_SUITES = $(SLOW_CT_SUITES)

test/backing_queue_SUITE.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
bq_queue_index_props,
5151
{variable_queue_default, [parallel], ?VARIABLE_QUEUE_TESTCASES},
5252
{variable_queue_lazy, [parallel], ?VARIABLE_QUEUE_TESTCASES ++
53-
[variable_queue_mode_change]},
53+
[variable_queue_mode_change]},
5454
bq_variable_queue_delete_msg_store_files_callback,
5555
bq_queue_recover
5656
]).

test/cluster_SUITE.erl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,4 +359,3 @@ queue_name(Config, Name) ->
359359

360360
queue_name(Name) ->
361361
rabbit_misc:r(<<"/">>, queue, Name).
362-

test/disconnect_detected_during_alarm_SUITE.erl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ end_per_testcase(Testcase, Config) ->
7575
%% ---------------------------------------------------------------------------
7676
%% Testcase
7777
%% ---------------------------------------------------------------------------
78+
7879
disconnect_detected_during_alarm(Config) ->
7980
A = rabbit_ct_broker_helpers:get_node_config(Config, 0, nodename),
8081

test/list_consumers_sanity_check_SUITE.erl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ group(_) ->
3939
%% -------------------------------------------------------------------
4040
%% Testsuite setup/teardown.
4141
%% -------------------------------------------------------------------
42+
4243
init_per_suite(Config) ->
4344
rabbit_ct_helpers:log_environment(),
4445
rabbit_ct_helpers:run_setup_steps(Config).
@@ -69,6 +70,7 @@ end_per_testcase(Testcase, Config) ->
6970
%% -------------------------------------------------------------------
7071
%% Testcase
7172
%% -------------------------------------------------------------------
73+
7274
list_consumers_sanity_check(Config) ->
7375
A = rabbit_ct_broker_helpers:get_node_config(Config, 0, nodename),
7476
Chan = rabbit_ct_client_helpers:open_channel(Config, A),

0 commit comments

Comments
 (0)