diff options
| author | Michael Klishin <mklishin@pivotal.io> | 2016-11-13 04:31:40 +0300 |
|---|---|---|
| committer | Michael Klishin <mklishin@pivotal.io> | 2016-11-13 04:31:40 +0300 |
| commit | 77567c95c7d2a50acc9deaacb81fa793b6c1821f (patch) | |
| tree | 15a0741748e0df616f87aa30542732dfc56d05c1 /test | |
| parent | 93876aef692a9ec0f7ba9fe693b32885e9b3c0e1 (diff) | |
| download | rabbitmq-server-git-77567c95c7d2a50acc9deaacb81fa793b6c1821f.tar.gz | |
Integrate DNS peer discovery backend, more logging
* Returned value must be a list of atoms
* Support more tuple types in normalize/1
* Update tests
Diffstat (limited to 'test')
| -rw-r--r-- | test/peer_discovery_dns_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/peer_discovery_dns_SUITE.erl b/test/peer_discovery_dns_SUITE.erl index 80bb2f8de6..da01aeebdd 100644 --- a/test/peer_discovery_dns_SUITE.erl +++ b/test/peer_discovery_dns_SUITE.erl @@ -95,8 +95,8 @@ hostname_discovery_with_short_node_names(_) -> node_discovery_with_long_node_names(_) -> Result = rabbit_peer_discovery_dns:discover_nodes(?DISCOVERY_ENDPOINT, true), - ?assertEqual(["ct_rabbit@www.rabbitmq.com"], Result). + ?assertEqual(['ct_rabbit@www.rabbitmq.com'], Result). node_discovery_with_short_node_names(_) -> Result = rabbit_peer_discovery_dns:discover_nodes(?DISCOVERY_ENDPOINT, false), - ?assertEqual(["ct_rabbit@www"], Result). + ?assertEqual([ct_rabbit@www], Result). |
