Skip to content

Commit

Permalink
test: fix h3 test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xffffharry committed Apr 25, 2024
1 parent 54f4963 commit 298c55f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/proto/src/h3/h3_client_stream.rs
Expand Up @@ -674,6 +674,7 @@ mod tests {
}

#[test]
#[allow(clippy::print_stdout)]
fn test_h3_client_stream_clonable() {

// use google
Expand Down Expand Up @@ -715,7 +716,7 @@ mod tests {

let total = join_set.len();
let mut idx = 0usize;
while let Some(_) = join_set.join_next().await {
while join_set.join_next().await.is_some() {
println!("join_set completed {idx}/{total}");
idx += 1;
}
Expand Down

0 comments on commit 298c55f

Please sign in to comment.