Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion neqo-transport/src/connection/tests/handshake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ fn reorder_handshake() {
c_stats_before.packets_rx,
usize::from(s_hs1_has_initial) + usize::from(s_hs2_has_initial)
);
assert!(c_stats_before.dropped_rx == 0);
assert_eq!(c_stats_before.dropped_rx, 0);

// Deliver all Initial packets.
client.process_input(s_initial_2, now);
Expand Down
2 changes: 1 addition & 1 deletion neqo-transport/tests/retry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ fn retry_after_initial() {
// We need to have the client just process the Initial.
let dgram = client.process(Some(server_initial), now()).dgram();
assert!(dgram.is_some());
assert!(*client.state() != State::Connected);
assert_ne!(*client.state(), State::Connected);

let retry = retry_server.process(cinit, now()).dgram(); // Retry!
assert!(retry.is_some());
Expand Down
Loading