summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/resolv/test_mdns.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/resolv/test_mdns.rb b/test/resolv/test_mdns.rb
index 9c17f9b219..ff66276f9a 100644
--- a/test/resolv/test_mdns.rb
+++ b/test/resolv/test_mdns.rb
@@ -12,15 +12,16 @@ class TestResolvMDNS < Test::Unit::TestCase
yield typeclass.new("::1")
end
end
+ addrs = mdns.__send__(:use_ipv6?) ? ["127.0.0.1", "::1"] : ["127.0.0.1"]
[
["example.com", []],
- ["foo.local", ["127.0.0.1"]],
+ ["foo.local", addrs],
].each do |name, expect|
results = []
mdns.each_address(name) do |result|
results << result.to_s
end
- assert_equal expect, results, "GH-1484"
+ assert_equal expect, results.sort, "GH-1484"
end
end
end