Fix unit test

This commit is contained in:
Lynix 2019-03-28 00:02:22 +01:00
parent b2da8d6c91
commit 5b48012dee
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ SCENARIO("IpAddress", "[NETWORK][IPADDRESS]")
Nz::IpAddress google(8, 8, 8, 8);
THEN("Google (DNS) is 8.8.8.8")
{
CHECK(Nz::IpAddress::ResolveAddress(google) == "google-public-dns-a.google.com");
CHECK(Nz::IpAddress::ResolveAddress(google) == "dns.google");
}
}
}