Skip to content

Commit 21eda51

Browse files
committed
Merge branch 'dev/kavyako/fix_websocket_tests' into development
2 parents 5b7bfd4 + 211fdea commit 21eda51

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Release/tests/functional/websockets/client/authentication_tests.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ void sni_test_impl(websocket_client &client)
142142
{
143143
try
144144
{
145-
client.connect(U("wss://jabbr.net")).wait();
145+
client.connect(U("wss://swordsoftruth.com")).wait();
146146

147147
// Should never be reached.
148148
VERIFY_IS_TRUE(false);
@@ -182,7 +182,7 @@ TEST(disable_sni)
182182

183183
try
184184
{
185-
client.connect(U("wss://jabbr.net")).wait();
185+
client.connect(U("wss://swordsoftruth.com")).wait();
186186

187187
// Should never be reached.
188188
VERIFY_IS_TRUE(false);
@@ -202,7 +202,7 @@ TEST(disable_sni)
202202
TEST(sni_explicit_hostname)
203203
{
204204
websocket_client_config config;
205-
const auto &name = utf8string("jabbr.net");
205+
const auto &name = utf8string("swordsoftruth.com");
206206
config.set_server_name(name);
207207
VERIFY_ARE_EQUAL(name, config.server_name());
208208
websocket_client client(config);
@@ -234,9 +234,9 @@ TEST(self_signed_cert)
234234
handshake_error_test_impl(U("wss://www.pcwebshop.co.uk/"));
235235
}
236236

237-
TEST(hostname_mismatch, "Ignore", "Site fixed certificate. Improve test (new site or alternate method).")
237+
TEST(hostname_mismatch)
238238
{
239-
handshake_error_test_impl(U("wss://swordsoftruth.com/"));
239+
handshake_error_test_impl(U("wss://jabbr.net"));
240240
}
241241

242242
TEST(cert_expired)

0 commit comments

Comments
 (0)