Skip to content

Commit 926b819

Browse files
committed
Fix the QUIC_HANDSHAKE_INFO Test to Allow for Future Versions to Grow Size (#5032)
1 parent 5ddc9bf commit 926b819

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/lib/ApiTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4544,7 +4544,7 @@ void QuicTestTlsParam()
45444544
QUIC_PARAM_TLS_HANDSHAKE_INFO,
45454545
&Length,
45464546
nullptr));
4547-
TEST_EQUAL(Length, sizeof(QUIC_HANDSHAKE_INFO));
4547+
TEST_TRUE(Length >= sizeof(QUIC_HANDSHAKE_INFO));
45484548

45494549
//
45504550
// Before handshake

0 commit comments

Comments
 (0)