Fix unit tests

This commit is contained in:
Lynix
2019-04-03 22:15:53 +02:00
parent 5e724b9c04
commit 2f5e9e481b
2 changed files with 4 additions and 4 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) == "dns.google");
CHECK(Nz::IpAddress::ResolveAddress(google) == "google-public-dns-a.google.com");
}
}
}