diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-09-28 15:27:46 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-09-28 15:28:38 +0000 |
commit | bef1750f650b0c7d62c8306dc1a74855a2a4d6a0 (patch) | |
tree | 61790a9f235706baae0fc61f0059db2fb4fb5b0d | |
parent | Merge pull request #4423 (diff) | |
download | monero-bef1750f650b0c7d62c8306dc1a74855a2a4d6a0.tar.xz |
unit_tests: fix longstanding DNS related unit test
-rw-r--r-- | tests/unit_tests/address_from_url.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/address_from_url.cpp b/tests/unit_tests/address_from_url.cpp index f174738fd..f6c0ad105 100644 --- a/tests/unit_tests/address_from_url.cpp +++ b/tests/unit_tests/address_from_url.cpp @@ -109,7 +109,7 @@ TEST(AddressFromURL, Failure) { bool dnssec_result = false; - std::vector<std::string> addresses = tools::dns_utils::addresses_from_url("example.invalid", dnssec_result); + std::vector<std::string> addresses = tools::dns_utils::addresses_from_url("example.veryinvalid", dnssec_result); // for a non-existing domain such as "example.invalid", the non-existence is proved with NSEC records ASSERT_TRUE(dnssec_result); |