diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-08-09 11:48:17 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-09 11:48:17 +0800 |
commit | cddd4de658fccc9c715cebb6788312f82d5b03a8 (patch) | |
tree | 2492b26d7cdfb6cb3dbb637062000a7e3c854285 /tests/untestable | |
parent | 80a0dc295bab6d7699c0da13b6bc90f7243572e4 (diff) | |
download | Nim-cddd4de658fccc9c715cebb6788312f82d5b03a8.tar.gz |
fixes broken ssl tests (#20181)
Diffstat (limited to 'tests/untestable')
-rw-r--r-- | tests/untestable/thttpclient_ssl_remotenetwork.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/untestable/thttpclient_ssl_remotenetwork.nim b/tests/untestable/thttpclient_ssl_remotenetwork.nim index cbb86dc13..d2366d9a9 100644 --- a/tests/untestable/thttpclient_ssl_remotenetwork.nim +++ b/tests/untestable/thttpclient_ssl_remotenetwork.nim @@ -49,8 +49,8 @@ when enableRemoteNetworking and (defined(nimTestsEnableFlaky) or not defined(win ("https://sha512.badssl.com/", bad, "sha512"), ("https://1000-sans.badssl.com/", bad, "1000-sans"), ("https://10000-sans.badssl.com/", good_broken, "10000-sans"), - ("https://ecc256.badssl.com/", good, "ecc256"), - ("https://ecc384.badssl.com/", good, "ecc384"), + ("https://ecc256.badssl.com/", good_broken, "ecc256"), + ("https://ecc384.badssl.com/", good_broken, "ecc384"), ("https://rsa2048.badssl.com/", good, "rsa2048"), ("https://rsa8192.badssl.com/", dubious_broken, "rsa8192"), ("http://http.badssl.com/", good, "regular http"), |