We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f746ad4 commit 959c883Copy full SHA for 959c883
test/test.cc
@@ -7401,7 +7401,7 @@ TEST(SNI_AutoDetectionTest, SNI_Logic) {
7401
}
7402
7403
{
7404
- SSLClient cli("[::1]", PORT);
+ SSLClient cli("::1", PORT);
7405
cli.enable_server_certificate_verification(false);
7406
auto res = cli.Get("/sni?expected=");
7407
ASSERT_TRUE(res);
@@ -10285,7 +10285,7 @@ TEST(UniversalClientImplTest, Ipv6LiteralAddress) {
10285
EXPECT_EQ(cli.port(), port);
10286
10287
10288
-TEST(UniversalClientImplHostTest, Ipv6LiteralAddressHost) {
+TEST(UniversalClientImplTest, Ipv6LiteralAddressHost) {
10289
std::string host = "[::1]";
10290
std::string ipV6TestURL = "http://" + host;
10291
0 commit comments