diff --git a/tests/tls_handler_test.c b/tests/tls_handler_test.c index 1a7f94ddf..504cb19a7 100644 --- a/tests/tls_handler_test.c +++ b/tests/tls_handler_test.c @@ -1309,7 +1309,10 @@ AWS_STATIC_STRING_FROM_LITERAL(s_uncommon_rsa8192_host_name, "rsa8192.badssl.com static int s_tls_client_channel_negotiation_success_rsa8192_fn(struct aws_allocator *allocator, void *ctx) { (void)ctx; - return s_verify_good_host(allocator, s_uncommon_rsa8192_host_name, 443, NULL); + // The certificate for rsa8192.badssl.com is expired. Disable this test until they renew the test or we find a + // better alternative. + // s_verify_good_host(allocator, s_uncommon_rsa8192_host_name, 443, NULL) + return AWS_OP_SKIP; } AWS_TEST_CASE(tls_client_channel_negotiation_success_rsa8192, s_tls_client_channel_negotiation_success_rsa8192_fn)