diff --git a/ipa-core/src/helpers/transport/stream/buffered.rs b/ipa-core/src/helpers/transport/stream/buffered.rs index 2bbe4a14e..8f68f916c 100644 --- a/ipa-core/src/helpers/transport/stream/buffered.rs +++ b/ipa-core/src/helpers/transport/stream/buffered.rs @@ -118,11 +118,11 @@ mod tests { fn success() { run(|| async move { verify_success(infallible_stream(11, 2), 3).await; - // verify_success(infallible_stream(12, 3), 3).await; - // verify_success(infallible_stream(12, 5), 12).await; - // verify_success(infallible_stream(12, 12), 12).await; - // verify_success(infallible_stream(24, 12), 12).await; - // verify_success(infallible_stream(24, 12), 1).await; + verify_success(infallible_stream(12, 3), 3).await; + verify_success(infallible_stream(12, 5), 12).await; + verify_success(infallible_stream(12, 12), 12).await; + verify_success(infallible_stream(24, 12), 12).await; + verify_success(infallible_stream(24, 12), 1).await; }); }