Index: unittests/Host/SocketAddressTest.cpp =================================================================== --- unittests/Host/SocketAddressTest.cpp +++ unittests/Host/SocketAddressTest.cpp @@ -33,11 +33,7 @@ ASSERT_EQ (0, sa.GetPort ()); ASSERT_TRUE (sa.SetToLocalhost (AF_INET6, 1139)); -#ifdef _WIN32 - ASSERT_STREQ ("0:0:0:0:0:0:0:1", sa.GetIPAddress ().c_str ()); -#else ASSERT_STREQ ("::1", sa.GetIPAddress ().c_str ()); -#endif ASSERT_EQ (1139, sa.GetPort ()); }