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 /tests/unit_tests | |
| parent | 8bf5a00564ad0e86b4698008418e28036013ef9f (diff) | |
| download | monzero-core-bef1750f650b0c7d62c8306dc1a74855a2a4d6a0.tar.gz monzero-core-bef1750f650b0c7d62c8306dc1a74855a2a4d6a0.tar.xz monzero-core-bef1750f650b0c7d62c8306dc1a74855a2a4d6a0.zip | |
unit_tests: fix longstanding DNS related unit test
Diffstat (limited to 'tests/unit_tests')
| -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); |
