@@ -142,7 +142,7 @@ void sni_test_impl(websocket_client &client)
142
142
{
143
143
try
144
144
{
145
- client.connect (U (" wss://jabbr.net " )).wait ();
145
+ client.connect (U (" wss://swordsoftruth.com " )).wait ();
146
146
147
147
// Should never be reached.
148
148
VERIFY_IS_TRUE (false );
@@ -182,7 +182,7 @@ TEST(disable_sni)
182
182
183
183
try
184
184
{
185
- client.connect (U (" wss://jabbr.net " )).wait ();
185
+ client.connect (U (" wss://swordsoftruth.com " )).wait ();
186
186
187
187
// Should never be reached.
188
188
VERIFY_IS_TRUE (false );
@@ -202,7 +202,7 @@ TEST(disable_sni)
202
202
TEST (sni_explicit_hostname)
203
203
{
204
204
websocket_client_config config;
205
- const auto &name = utf8string (" jabbr.net " );
205
+ const auto &name = utf8string (" swordsoftruth.com " );
206
206
config.set_server_name (name);
207
207
VERIFY_ARE_EQUAL (name, config.server_name ());
208
208
websocket_client client (config);
@@ -234,9 +234,9 @@ TEST(self_signed_cert)
234
234
handshake_error_test_impl (U (" wss://www.pcwebshop.co.uk/" ));
235
235
}
236
236
237
- TEST (hostname_mismatch, " Ignore " , " Site fixed certificate. Improve test (new site or alternate method). " )
237
+ TEST (hostname_mismatch)
238
238
{
239
- handshake_error_test_impl (U (" wss://swordsoftruth.com/ " ));
239
+ handshake_error_test_impl (U (" wss://jabbr.net " ));
240
240
}
241
241
242
242
TEST (cert_expired)
0 commit comments