Skip to content

Commit

Permalink
chore(net): print unexpected event (#1466)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Feb 20, 2023
1 parent 50203a8 commit 058349e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/net/network/tests/it/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ async fn test_session_established_with_different_capability() {
assert_eq!(handle1.peer_id(), &peer_id);
assert_eq!(status.version, EthVersion::Eth66 as u8);
}
_ => {
panic!("unexpected event")
ev => {
panic!("unexpected event: {ev:?}")
}
}
}
Expand Down

0 comments on commit 058349e

Please sign in to comment.