Skip to content

Commit

Permalink
again
Browse files Browse the repository at this point in the history
  • Loading branch information
KershawChang committed May 13, 2024
1 parent 0037ec5 commit b76e55a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neqo-http3/src/connection_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2620,7 +2620,7 @@ mod tests {
force_idle(&mut client, &mut server);

let idle_timeout = ConnectionParameters::default().get_idle_timeout();
assert_eq!(client.process_output(now()).callback(), idle_timeout / 2);
assert_eq!(client.process_output(now()).callback(), idle_timeout);
}

// Helper function: read response when a server sends HTTP_RESPONSE_2.
Expand Down Expand Up @@ -5115,7 +5115,7 @@ mod tests {
assert!(!fin);

force_idle(&mut client, &mut server);
assert_eq!(client.process_output(now()).callback(), idle_timeout / 2);
assert_eq!(client.process_output(now()).callback(), idle_timeout);
}

#[test]
Expand Down

0 comments on commit b76e55a

Please sign in to comment.