summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2022-12-16 13:26:33 +0000
committerHugo Landau <hlandau@openssl.org>2023-01-13 13:20:22 +0000
commit05f97354bb6fe29731a8a25a475a115a2c44720a (patch)
tree9095f77a8b05923f2503813ae41fb515ee78bc11 /test
parentc41c7ee976aad76f63ce42c1ea883e4d075e2f0e (diff)
downloadopenssl-new-05f97354bb6fe29731a8a25a475a115a2c44720a.tar.gz
QUIC TXP: Fix bug in send stream handling, cleanup
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19703)
Diffstat (limited to 'test')
-rw-r--r--test/quic_fifd_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/quic_fifd_test.c b/test/quic_fifd_test.c
index dfcabfa7cd..c86ee83860 100644
--- a/test/quic_fifd_test.c
+++ b/test/quic_fifd_test.c
@@ -277,7 +277,7 @@ static int test_generic(INFO *info, int kind)
/* FIN should have been marked as lost */
num_iov = OSSL_NELEM(iov);
- if (!TEST_true(ossl_quic_sstream_get_stream_frame(info->sstream[1], 10,
+ if (!TEST_true(ossl_quic_sstream_get_stream_frame(info->sstream[1], 1,
&hdr, iov, &num_iov))
|| !TEST_true(hdr.is_fin)
|| !TEST_uint64_t_eq(hdr.len, 0))