summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-07-25 11:32:24 +0100
committerMatt Caswell <matt@openssl.org>2023-08-08 14:33:42 +0100
commit457678d68238433b321805eb158a2e15d9331195 (patch)
tree3da727978c98c2ccd62afbb880e7db6ff92575e2 /test
parent80bcc4f1aeb67f0a05dbff04372e0b9563d4a779 (diff)
QUIC: Update no-TPARAM test for correct error code
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21547)
Diffstat (limited to 'test')
-rw-r--r--test/quicfaultstest.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/quicfaultstest.c b/test/quicfaultstest.c
index 68e5cad8a0..7688752742 100644
--- a/test/quicfaultstest.c
+++ b/test/quicfaultstest.c
@@ -200,7 +200,8 @@ static int test_no_transport_params(void)
if (!TEST_false(qtest_create_quic_connection(qtserv, cssl)))
goto err;
- if (!TEST_true(qtest_check_server_protocol_err(qtserv)))
+ if (!TEST_true(qtest_check_server_transport_err(qtserv,
+ QUIC_ERR_CRYPTO_MISSING_EXT)))
goto err;
testresult = 1;