From dd5ddba4f0cd34e223fe6ff45e488b5e4091e29d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Kr=C3=BCger?= Date: Wed, 17 Dec 2025 09:29:07 +0100 Subject: [PATCH] Reintroduce assertion --- quinn-proto/src/tests/mod.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/quinn-proto/src/tests/mod.rs b/quinn-proto/src/tests/mod.rs index 22bfcaaa5..5f9454c0f 100644 --- a/quinn-proto/src/tests/mod.rs +++ b/quinn-proto/src/tests/mod.rs @@ -1355,9 +1355,7 @@ fn migration() { assert_ne!(pair.server_conn_mut(server_ch).total_recvd(), 0); pair.drive(); - // TODO(matheus23): Currently this returns PathEvents::Opened for path ID 0, which is weird, - // and just a side-effect of receiving a PATH_RESPONSE frame on path 0. - // assert_matches!(pair.client_conn_mut(client_ch).poll(), None); + assert_matches!(pair.client_conn_mut(client_ch).poll(), None); assert_eq!( pair.server_conn_mut(server_ch) .path_addresses(PathId::ZERO)