summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSamuel NELA <hello@samnela.com>2019-01-13 20:54:12 +0100
committerSamuel NELA <hello@samnela.com>2019-01-13 20:54:12 +0100
commitdd1a33264272c13def7601ebf216bf996c271c0b (patch)
tree40c30f8f5e873df227f45dc433fa2b1d97ba2004 /test
parentb204aaac6e787a1b28ceaa60ba10e07ab2635a72 (diff)
downloadrabbitmq-server-git-dd1a33264272c13def7601ebf216bf996c271c0b.tar.gz
Fixed years in copyright
Diffstat (limited to 'test')
-rw-r--r--test/backing_queue_SUITE.erl2
-rw-r--r--test/channel_interceptor_SUITE.erl2
-rw-r--r--test/channel_operation_timeout_SUITE.erl2
-rw-r--r--test/channel_operation_timeout_test_queue.erl2
-rw-r--r--test/cluster_SUITE.erl2
-rw-r--r--test/cluster_formation_locking_SUITE.erl8
-rw-r--r--test/cluster_rename_SUITE.erl2
-rw-r--r--test/clustering_management_SUITE.erl2
-rw-r--r--test/config_schema_SUITE.erl3
-rw-r--r--test/crashing_queues_SUITE.erl2
-rw-r--r--test/credential_validation_SUITE.erl3
-rw-r--r--test/disconnect_detected_during_alarm_SUITE.erl2
-rw-r--r--test/dummy_event_receiver.erl2
-rw-r--r--test/dummy_runtime_parameters.erl2
-rw-r--r--test/dummy_supervisor2.erl2
-rw-r--r--test/dynamic_ha_SUITE.erl2
-rw-r--r--test/eager_sync_SUITE.erl2
-rw-r--r--test/gm_SUITE.erl2
-rw-r--r--test/health_check_SUITE.erl2
-rw-r--r--test/lazy_queue_SUITE.erl2
-rw-r--r--test/list_consumers_sanity_check_SUITE.erl2
-rw-r--r--test/list_queues_online_and_offline_SUITE.erl2
-rw-r--r--test/many_node_ha_SUITE.erl3
-rw-r--r--test/metrics_SUITE.erl2
-rw-r--r--test/mirrored_supervisor_SUITE.erl3
-rw-r--r--test/mirrored_supervisor_SUITE_gs.erl2
-rw-r--r--test/msg_store_SUITE.erl2
-rw-r--r--test/partitions_SUITE.erl2
-rw-r--r--test/peer_discovery_dns_SUITE.erl2
-rw-r--r--test/per_user_connection_tracking_SUITE.erl10
-rw-r--r--test/per_vhost_connection_limit_SUITE.erl2
-rw-r--r--test/per_vhost_connection_limit_partitions_SUITE.erl2
-rw-r--r--test/per_vhost_msg_store_SUITE.erl2
-rw-r--r--test/per_vhost_queue_limit_SUITE.erl2
-rw-r--r--test/plugin_versioning_SUITE.erl2
-rw-r--r--test/policy_SUITE.erl6
-rw-r--r--test/priority_queue_SUITE.erl2
-rw-r--r--test/priority_queue_recovery_SUITE.erl2
-rw-r--r--test/proxy_protocol_SUITE.erl2
-rw-r--r--test/queue_master_location_SUITE.erl2
-rw-r--r--test/quorum_queue_SUITE.erl7
-rw-r--r--test/rabbit_core_metrics_gc_SUITE.erl2
-rw-r--r--test/rabbit_dummy_protocol_connection_info.erl2
-rw-r--r--test/rabbit_ha_test_consumer.erl2
-rw-r--r--test/rabbit_ha_test_producer.erl2
-rw-r--r--test/rabbitmqctl_integration_SUITE.erl2
-rw-r--r--test/rabbitmqctl_shutdown_SUITE.erl2
-rw-r--r--test/simple_ha_SUITE.erl2
-rw-r--r--test/single_active_consumer_SUITE.erl2
-rw-r--r--test/sup_delayed_restart_SUITE.erl2
-rw-r--r--test/sync_detection_SUITE.erl2
-rwxr-xr-xtest/temp/rabbitmqadmin.py2
-rw-r--r--test/term_to_binary_compat_prop_SUITE.erl2
-rw-r--r--test/topic_permission_SUITE.erl2
-rw-r--r--test/unit_SUITE.erl2
-rw-r--r--test/unit_inbroker_non_parallel_SUITE.erl2
-rw-r--r--test/unit_inbroker_parallel_SUITE.erl2
-rw-r--r--test/unit_log_config_SUITE.erl2
-rw-r--r--test/unit_queue_consumers_SUITE.erl4
-rw-r--r--test/vhost_SUITE.erl2
-rw-r--r--test/worker_pool_SUITE.erl2
61 files changed, 73 insertions, 78 deletions
diff --git a/test/backing_queue_SUITE.erl b/test/backing_queue_SUITE.erl
index 94cbd48e8c..5864c387c5 100644
--- a/test/backing_queue_SUITE.erl
+++ b/test/backing_queue_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(backing_queue_SUITE).
diff --git a/test/channel_interceptor_SUITE.erl b/test/channel_interceptor_SUITE.erl
index 4081086f4f..e2711fda86 100644
--- a/test/channel_interceptor_SUITE.erl
+++ b/test/channel_interceptor_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2016-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(channel_interceptor_SUITE).
diff --git a/test/channel_operation_timeout_SUITE.erl b/test/channel_operation_timeout_SUITE.erl
index 7b41b9c225..9bfa0ae07a 100644
--- a/test/channel_operation_timeout_SUITE.erl
+++ b/test/channel_operation_timeout_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2015 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(channel_operation_timeout_SUITE).
diff --git a/test/channel_operation_timeout_test_queue.erl b/test/channel_operation_timeout_test_queue.erl
index 59de0cb5c7..d414072e2c 100644
--- a/test/channel_operation_timeout_test_queue.erl
+++ b/test/channel_operation_timeout_test_queue.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(channel_operation_timeout_test_queue).
diff --git a/test/cluster_SUITE.erl b/test/cluster_SUITE.erl
index 62928aae9f..c52dc9ef64 100644
--- a/test/cluster_SUITE.erl
+++ b/test/cluster_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(cluster_SUITE).
diff --git a/test/cluster_formation_locking_SUITE.erl b/test/cluster_formation_locking_SUITE.erl
index 25b2df308c..176113c496 100644
--- a/test/cluster_formation_locking_SUITE.erl
+++ b/test/cluster_formation_locking_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(cluster_formation_locking_SUITE).
@@ -38,13 +38,13 @@ groups() ->
init_per_testcase(Testcase, Config) when Testcase == init_with_lock_exits_after_errors;
Testcase == init_with_lock_not_supported;
Testcase == init_with_lock_supported ->
- application:set_env(rabbit, cluster_formation,
+ application:set_env(rabbit, cluster_formation,
[{peer_discover_backend, peer_discover_classic_config},
{lock_acquisition_failure_mode, fail}]),
ok = meck:new(rabbit_peer_discovery_classic_config, [passthrough]),
Config;
init_per_testcase(init_with_lock_ignore_after_errors, Config) ->
- application:set_env(rabbit, cluster_formation,
+ application:set_env(rabbit, cluster_formation,
[{peer_discover_backend, peer_discover_classic_config},
{lock_acquisition_failure_mode, ignore}]),
ok = meck:new(rabbit_peer_discovery_classic_config, [passthrough]),
@@ -52,7 +52,7 @@ init_per_testcase(init_with_lock_ignore_after_errors, Config) ->
end_per_testcase(_, _) ->
meck:unload(),
- application:unset_env(rabbit, cluster_formation).
+ application:unset_env(rabbit, cluster_formation).
init_with_lock_exits_after_errors(_Config) ->
meck:expect(rabbit_peer_discovery_classic_config, lock, fun(_) -> {error, "test error"} end),
diff --git a/test/cluster_rename_SUITE.erl b/test/cluster_rename_SUITE.erl
index dd8147e509..a7743a8891 100644
--- a/test/cluster_rename_SUITE.erl
+++ b/test/cluster_rename_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(cluster_rename_SUITE).
diff --git a/test/clustering_management_SUITE.erl b/test/clustering_management_SUITE.erl
index 54f4bafbfd..120257feb9 100644
--- a/test/clustering_management_SUITE.erl
+++ b/test/clustering_management_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(clustering_management_SUITE).
diff --git a/test/config_schema_SUITE.erl b/test/config_schema_SUITE.erl
index 4c143cd1aa..80363130d8 100644
--- a/test/config_schema_SUITE.erl
+++ b/test/config_schema_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2016-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(config_schema_SUITE).
@@ -61,4 +61,3 @@ run_snippets(Config) ->
run_snippets1(Config) ->
rabbit_ct_config_schema:run_snippets(Config).
-
diff --git a/test/crashing_queues_SUITE.erl b/test/crashing_queues_SUITE.erl
index fa0a695173..2d91083abc 100644
--- a/test/crashing_queues_SUITE.erl
+++ b/test/crashing_queues_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(crashing_queues_SUITE).
diff --git a/test/credential_validation_SUITE.erl b/test/credential_validation_SUITE.erl
index 4f241197fc..0c499b2e86 100644
--- a/test/credential_validation_SUITE.erl
+++ b/test/credential_validation_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(credential_validation_SUITE).
@@ -272,4 +272,3 @@ regexp_that_requires_length_of_at_most(N) when is_integer(N) ->
validator_backend(Config) ->
rabbit_ct_broker_helpers:rpc(Config, 0, rabbit_credential_validation, backend, []).
-
diff --git a/test/disconnect_detected_during_alarm_SUITE.erl b/test/disconnect_detected_during_alarm_SUITE.erl
index 42e221fb0f..4776c9e179 100644
--- a/test/disconnect_detected_during_alarm_SUITE.erl
+++ b/test/disconnect_detected_during_alarm_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(disconnect_detected_during_alarm_SUITE).
diff --git a/test/dummy_event_receiver.erl b/test/dummy_event_receiver.erl
index 75db3678ce..0720db73a0 100644
--- a/test/dummy_event_receiver.erl
+++ b/test/dummy_event_receiver.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2015 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(dummy_event_receiver).
diff --git a/test/dummy_runtime_parameters.erl b/test/dummy_runtime_parameters.erl
index 0bf4b82d86..a314739d21 100644
--- a/test/dummy_runtime_parameters.erl
+++ b/test/dummy_runtime_parameters.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2015 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(dummy_runtime_parameters).
diff --git a/test/dummy_supervisor2.erl b/test/dummy_supervisor2.erl
index 9ca3f6329c..7f0588ec30 100644
--- a/test/dummy_supervisor2.erl
+++ b/test/dummy_supervisor2.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(dummy_supervisor2).
diff --git a/test/dynamic_ha_SUITE.erl b/test/dynamic_ha_SUITE.erl
index 1d455bb290..e41c07a888 100644
--- a/test/dynamic_ha_SUITE.erl
+++ b/test/dynamic_ha_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(dynamic_ha_SUITE).
diff --git a/test/eager_sync_SUITE.erl b/test/eager_sync_SUITE.erl
index 7f28ea436d..f6c9002c51 100644
--- a/test/eager_sync_SUITE.erl
+++ b/test/eager_sync_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(eager_sync_SUITE).
diff --git a/test/gm_SUITE.erl b/test/gm_SUITE.erl
index df73d8ac27..6236717196 100644
--- a/test/gm_SUITE.erl
+++ b/test/gm_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2015 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(gm_SUITE).
diff --git a/test/health_check_SUITE.erl b/test/health_check_SUITE.erl
index 13373d79d4..1e5552e0e5 100644
--- a/test/health_check_SUITE.erl
+++ b/test/health_check_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2016-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(health_check_SUITE).
diff --git a/test/lazy_queue_SUITE.erl b/test/lazy_queue_SUITE.erl
index f6de560832..8dfc0d62ad 100644
--- a/test/lazy_queue_SUITE.erl
+++ b/test/lazy_queue_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(lazy_queue_SUITE).
diff --git a/test/list_consumers_sanity_check_SUITE.erl b/test/list_consumers_sanity_check_SUITE.erl
index 3fa02b1de6..7d9444255b 100644
--- a/test/list_consumers_sanity_check_SUITE.erl
+++ b/test/list_consumers_sanity_check_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(list_consumers_sanity_check_SUITE).
diff --git a/test/list_queues_online_and_offline_SUITE.erl b/test/list_queues_online_and_offline_SUITE.erl
index 4b56012a26..2d3823be0e 100644
--- a/test/list_queues_online_and_offline_SUITE.erl
+++ b/test/list_queues_online_and_offline_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(list_queues_online_and_offline_SUITE).
diff --git a/test/many_node_ha_SUITE.erl b/test/many_node_ha_SUITE.erl
index c5c0382dc7..a6def781fa 100644
--- a/test/many_node_ha_SUITE.erl
+++ b/test/many_node_ha_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(many_node_ha_SUITE).
@@ -114,4 +114,3 @@ kill_intermediate(Config) ->
rabbit_ha_test_producer:await_response(ProducerPid),
rabbit_ha_test_consumer:await_response(ConsumerPid),
ok.
-
diff --git a/test/metrics_SUITE.erl b/test/metrics_SUITE.erl
index a66e9cec3c..44368b643d 100644
--- a/test/metrics_SUITE.erl
+++ b/test/metrics_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2016-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(metrics_SUITE).
-compile(export_all).
diff --git a/test/mirrored_supervisor_SUITE.erl b/test/mirrored_supervisor_SUITE.erl
index 5ed17c90bb..d3cc080eeb 100644
--- a/test/mirrored_supervisor_SUITE.erl
+++ b/test/mirrored_supervisor_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2015 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(mirrored_supervisor_SUITE).
@@ -332,4 +332,3 @@ init({fake_strategy_for_ignore, _ChildSpecs}) ->
init({Strategy, ChildSpecs}) ->
{ok, {{Strategy, 0, 1}, ChildSpecs}}.
-
diff --git a/test/mirrored_supervisor_SUITE_gs.erl b/test/mirrored_supervisor_SUITE_gs.erl
index 867754b4a2..5f65758416 100644
--- a/test/mirrored_supervisor_SUITE_gs.erl
+++ b/test/mirrored_supervisor_SUITE_gs.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2015 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(mirrored_supervisor_SUITE_gs).
diff --git a/test/msg_store_SUITE.erl b/test/msg_store_SUITE.erl
index 4eaa535a57..f384ee12ef 100644
--- a/test/msg_store_SUITE.erl
+++ b/test/msg_store_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2015 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(msg_store_SUITE).
diff --git a/test/partitions_SUITE.erl b/test/partitions_SUITE.erl
index b09d05b550..ff8f7b4289 100644
--- a/test/partitions_SUITE.erl
+++ b/test/partitions_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(partitions_SUITE).
diff --git a/test/peer_discovery_dns_SUITE.erl b/test/peer_discovery_dns_SUITE.erl
index 7deb38ba97..1690dde64c 100644
--- a/test/peer_discovery_dns_SUITE.erl
+++ b/test/peer_discovery_dns_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(peer_discovery_dns_SUITE).
diff --git a/test/per_user_connection_tracking_SUITE.erl b/test/per_user_connection_tracking_SUITE.erl
index 7f93aef1ac..19650607ad 100644
--- a/test/per_user_connection_tracking_SUITE.erl
+++ b/test/per_user_connection_tracking_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(per_user_connection_tracking_SUITE).
@@ -116,7 +116,7 @@ single_node_list_of_user(Config) ->
Username2 = <<"guest2">>,
Vhost = proplists:get_value(rmq_vhost, Config),
-
+
rabbit_ct_broker_helpers:add_user(Config, Username2),
rabbit_ct_broker_helpers:set_full_permissions(Config, Username2, Vhost),
@@ -142,7 +142,7 @@ single_node_list_of_user(Config) ->
[Username, Username] =
lists:map(fun (#tracked_connection{username = U}) -> U end,
connections_in(Config, Username)),
-
+
close_connections([Conn2, Conn3, Conn5]),
rabbit_ct_broker_helpers:delete_user(Config, Username2),
?assertEqual(0, length(all_connections(Config))).
@@ -152,7 +152,7 @@ single_node_user_deletion_forces_connection_closure(Config) ->
Username2 = <<"guest2">>,
Vhost = proplists:get_value(rmq_vhost, Config),
-
+
rabbit_ct_broker_helpers:add_user(Config, Username2),
rabbit_ct_broker_helpers:set_full_permissions(Config, Username2, Vhost),
@@ -177,7 +177,7 @@ cluster_user_deletion_forces_connection_closure(Config) ->
Username2 = <<"guest2">>,
Vhost = proplists:get_value(rmq_vhost, Config),
-
+
rabbit_ct_broker_helpers:add_user(Config, Username2),
rabbit_ct_broker_helpers:set_full_permissions(Config, Username2, Vhost),
diff --git a/test/per_vhost_connection_limit_SUITE.erl b/test/per_vhost_connection_limit_SUITE.erl
index 68deec12cb..db1b8d859d 100644
--- a/test/per_vhost_connection_limit_SUITE.erl
+++ b/test/per_vhost_connection_limit_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(per_vhost_connection_limit_SUITE).
diff --git a/test/per_vhost_connection_limit_partitions_SUITE.erl b/test/per_vhost_connection_limit_partitions_SUITE.erl
index 20adf704a0..610ce33bba 100644
--- a/test/per_vhost_connection_limit_partitions_SUITE.erl
+++ b/test/per_vhost_connection_limit_partitions_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2015 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(per_vhost_connection_limit_partitions_SUITE).
diff --git a/test/per_vhost_msg_store_SUITE.erl b/test/per_vhost_msg_store_SUITE.erl
index 4d88c84b7e..94c434deee 100644
--- a/test/per_vhost_msg_store_SUITE.erl
+++ b/test/per_vhost_msg_store_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(per_vhost_msg_store_SUITE).
diff --git a/test/per_vhost_queue_limit_SUITE.erl b/test/per_vhost_queue_limit_SUITE.erl
index 1c6bea08dd..80de41797f 100644
--- a/test/per_vhost_queue_limit_SUITE.erl
+++ b/test/per_vhost_queue_limit_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(per_vhost_queue_limit_SUITE).
diff --git a/test/plugin_versioning_SUITE.erl b/test/plugin_versioning_SUITE.erl
index e184aeac64..d8adc85071 100644
--- a/test/plugin_versioning_SUITE.erl
+++ b/test/plugin_versioning_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2016-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(plugin_versioning_SUITE).
diff --git a/test/policy_SUITE.erl b/test/policy_SUITE.erl
index 7cf3427db0..22ef8175f9 100644
--- a/test/policy_SUITE.erl
+++ b/test/policy_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(policy_SUITE).
@@ -79,7 +79,7 @@ policy_ttl(Config) ->
Q = <<"policy_ttl-queue">>,
rabbit_ct_broker_helpers:set_policy(Config, 0, <<"ttl-policy">>,
<<"policy_ttl-queue">>, <<"all">>, [{<<"message-ttl">>, 20}]),
-
+
declare(Ch, Q),
publish(Ch, Q, lists:seq(1, 20)),
timer:sleep(50),
@@ -100,7 +100,7 @@ operator_policy_ttl(Config) ->
<<"policy_ttl-queue">>, <<"all">>, [{<<"message-ttl">>, 100000}]),
rabbit_ct_broker_helpers:set_operator_policy(Config, 0, <<"ttl-policy-op">>,
<<"policy_ttl-queue">>, <<"all">>, [{<<"message-ttl">>, 1}]),
-
+
declare(Ch, Q),
publish(Ch, Q, lists:seq(1, 50)),
timer:sleep(50),
diff --git a/test/priority_queue_SUITE.erl b/test/priority_queue_SUITE.erl
index 33906ee70b..9db866e3c6 100644
--- a/test/priority_queue_SUITE.erl
+++ b/test/priority_queue_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(priority_queue_SUITE).
diff --git a/test/priority_queue_recovery_SUITE.erl b/test/priority_queue_recovery_SUITE.erl
index 9e2ffbd3fe..20f0082aab 100644
--- a/test/priority_queue_recovery_SUITE.erl
+++ b/test/priority_queue_recovery_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(priority_queue_recovery_SUITE).
diff --git a/test/proxy_protocol_SUITE.erl b/test/proxy_protocol_SUITE.erl
index 84b94d72a8..787ff7446c 100644
--- a/test/proxy_protocol_SUITE.erl
+++ b/test/proxy_protocol_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2017-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(proxy_protocol_SUITE).
diff --git a/test/queue_master_location_SUITE.erl b/test/queue_master_location_SUITE.erl
index 94101567f6..d4c8da2bcb 100644
--- a/test/queue_master_location_SUITE.erl
+++ b/test/queue_master_location_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2015 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(queue_master_location_SUITE).
diff --git a/test/quorum_queue_SUITE.erl b/test/quorum_queue_SUITE.erl
index c84eaf4a5e..0b27e58a7e 100644
--- a/test/quorum_queue_SUITE.erl
+++ b/test/quorum_queue_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2018 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2018-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(quorum_queue_SUITE).
@@ -1139,7 +1139,7 @@ test_dead_lettering(PolicySet, Config, Ch, Servers, RaName, Source, Destination)
wait_for_messages_pending_ack(Servers, RaName, 0),
wait_for_messages(Config, [[Destination, <<"0">>, <<"0">>, <<"0">>]]),
DeliveryTag = consume(Ch, Source, false),
- wait_for_messages_ready(Servers, RaName, 0),
+ wait_for_messages_ready(Servers, RaName, 0),
wait_for_messages_pending_ack(Servers, RaName, 1),
wait_for_messages(Config, [[Destination, <<"0">>, <<"0">>, <<"0">>]]),
amqp_channel:cast(Ch, #'basic.nack'{delivery_tag = DeliveryTag,
@@ -1827,7 +1827,7 @@ reconnect_consumer_and_publish(Config) ->
multiple = false}),
wait_for_messages_ready(Servers, RaName, 0),
wait_for_messages_pending_ack(Servers, RaName, 1)
- end,
+ end,
receive
{#'basic.deliver'{delivery_tag = DeliveryTag2,
redelivered = true}, _} ->
@@ -2333,4 +2333,3 @@ get_message_bytes(Leader, QRes) ->
_ ->
[]
end.
-
diff --git a/test/rabbit_core_metrics_gc_SUITE.erl b/test/rabbit_core_metrics_gc_SUITE.erl
index 47d47290a4..5bbc95274f 100644
--- a/test/rabbit_core_metrics_gc_SUITE.erl
+++ b/test/rabbit_core_metrics_gc_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(rabbit_core_metrics_gc_SUITE).
diff --git a/test/rabbit_dummy_protocol_connection_info.erl b/test/rabbit_dummy_protocol_connection_info.erl
index 3da963e057..759fef868d 100644
--- a/test/rabbit_dummy_protocol_connection_info.erl
+++ b/test/rabbit_dummy_protocol_connection_info.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2017-2019 Pivotal Software, Inc. All rights reserved.
%%
%% Dummy module to test rabbit_direct:extract_extra_auth_props
diff --git a/test/rabbit_ha_test_consumer.erl b/test/rabbit_ha_test_consumer.erl
index f0ddd9f839..8d61903308 100644
--- a/test/rabbit_ha_test_consumer.erl
+++ b/test/rabbit_ha_test_consumer.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(rabbit_ha_test_consumer).
diff --git a/test/rabbit_ha_test_producer.erl b/test/rabbit_ha_test_producer.erl
index b6c301cd0c..538d2213a2 100644
--- a/test/rabbit_ha_test_producer.erl
+++ b/test/rabbit_ha_test_producer.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(rabbit_ha_test_producer).
diff --git a/test/rabbitmqctl_integration_SUITE.erl b/test/rabbitmqctl_integration_SUITE.erl
index a5d3a0fd03..87d076f694 100644
--- a/test/rabbitmqctl_integration_SUITE.erl
+++ b/test/rabbitmqctl_integration_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2016-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(rabbitmqctl_integration_SUITE).
diff --git a/test/rabbitmqctl_shutdown_SUITE.erl b/test/rabbitmqctl_shutdown_SUITE.erl
index 25cc2fdef8..0debfde2b6 100644
--- a/test/rabbitmqctl_shutdown_SUITE.erl
+++ b/test/rabbitmqctl_shutdown_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2017-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(rabbitmqctl_shutdown_SUITE).
diff --git a/test/simple_ha_SUITE.erl b/test/simple_ha_SUITE.erl
index 41b6ec7a94..60c736747e 100644
--- a/test/simple_ha_SUITE.erl
+++ b/test/simple_ha_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(simple_ha_SUITE).
diff --git a/test/single_active_consumer_SUITE.erl b/test/single_active_consumer_SUITE.erl
index 945229e372..25261042b2 100644
--- a/test/single_active_consumer_SUITE.erl
+++ b/test/single_active_consumer_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2018 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2018-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(single_active_consumer_SUITE).
diff --git a/test/sup_delayed_restart_SUITE.erl b/test/sup_delayed_restart_SUITE.erl
index 0dffe33068..5905419d91 100644
--- a/test/sup_delayed_restart_SUITE.erl
+++ b/test/sup_delayed_restart_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2015 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(sup_delayed_restart_SUITE).
diff --git a/test/sync_detection_SUITE.erl b/test/sync_detection_SUITE.erl
index c606e050dd..f575d72d4d 100644
--- a/test/sync_detection_SUITE.erl
+++ b/test/sync_detection_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(sync_detection_SUITE).
diff --git a/test/temp/rabbitmqadmin.py b/test/temp/rabbitmqadmin.py
index 1e7552b92c..eb4ac11219 100755
--- a/test/temp/rabbitmqadmin.py
+++ b/test/temp/rabbitmqadmin.py
@@ -13,7 +13,7 @@
# The Original Code is RabbitMQ Management Plugin.
#
# The Initial Developer of the Original Code is GoPivotal, Inc.
-# Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
+# Copyright (c) 2010-2019 Pivotal Software, Inc. All rights reserved.
import sys
if sys.version_info[0] < 2 or sys.version_info[1] < 6:
diff --git a/test/term_to_binary_compat_prop_SUITE.erl b/test/term_to_binary_compat_prop_SUITE.erl
index ba5069860a..250a7a7bf2 100644
--- a/test/term_to_binary_compat_prop_SUITE.erl
+++ b/test/term_to_binary_compat_prop_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2017-2019 Pivotal Software, Inc. All rights reserved.
%%
diff --git a/test/topic_permission_SUITE.erl b/test/topic_permission_SUITE.erl
index c656746432..6db2d988b9 100644
--- a/test/topic_permission_SUITE.erl
+++ b/test/topic_permission_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(topic_permission_SUITE).
diff --git a/test/unit_SUITE.erl b/test/unit_SUITE.erl
index f74e18afb9..1c3b453c04 100644
--- a/test/unit_SUITE.erl
+++ b/test/unit_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(unit_SUITE).
diff --git a/test/unit_inbroker_non_parallel_SUITE.erl b/test/unit_inbroker_non_parallel_SUITE.erl
index 56d692847f..e3e282f233 100644
--- a/test/unit_inbroker_non_parallel_SUITE.erl
+++ b/test/unit_inbroker_non_parallel_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(unit_inbroker_non_parallel_SUITE).
diff --git a/test/unit_inbroker_parallel_SUITE.erl b/test/unit_inbroker_parallel_SUITE.erl
index 466df684af..0343e7d136 100644
--- a/test/unit_inbroker_parallel_SUITE.erl
+++ b/test/unit_inbroker_parallel_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(unit_inbroker_parallel_SUITE).
diff --git a/test/unit_log_config_SUITE.erl b/test/unit_log_config_SUITE.erl
index b753c4075c..35b073e6fa 100644
--- a/test/unit_log_config_SUITE.erl
+++ b/test/unit_log_config_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2016-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(unit_log_config_SUITE).
diff --git a/test/unit_queue_consumers_SUITE.erl b/test/unit_queue_consumers_SUITE.erl
index 08d12e7ec5..08b2da4574 100644
--- a/test/unit_queue_consumers_SUITE.erl
+++ b/test/unit_queue_consumers_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2018 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2018-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(unit_queue_consumers_SUITE).
@@ -99,4 +99,4 @@ state(Consumers) ->
function_for_process() ->
receive
_ -> ok
- end. \ No newline at end of file
+ end.
diff --git a/test/vhost_SUITE.erl b/test/vhost_SUITE.erl
index d339dc43b3..2de5819b54 100644
--- a/test/vhost_SUITE.erl
+++ b/test/vhost_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2011-2016 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2011-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(vhost_SUITE).
diff --git a/test/worker_pool_SUITE.erl b/test/worker_pool_SUITE.erl
index d15f42c504..8c9c5fa366 100644
--- a/test/worker_pool_SUITE.erl
+++ b/test/worker_pool_SUITE.erl
@@ -11,7 +11,7 @@
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved.
+%% Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
%%
-module(worker_pool_SUITE).