Skip to content

Commit

Permalink
clean code
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanKung committed Mar 17, 2024
1 parent 91b7bad commit cdafae1
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions crates/core/src/message/handlers/stabilization.rs
Original file line number Diff line number Diff line change
Expand Up @@ -267,13 +267,7 @@ mod test {

// node1 notify node3
let ev3 = node3.listen_once().await.unwrap().0;
assert_eq!(
ev3.signer(),
node1.did(),
"expect {:?}, got {:?}",
node1.did(),
ev3.signer()
);
assert_eq!(ev3.signer(), node1.did());
assert_eq!(ev3.relay.path, vec![node1.did()]);
assert!(matches!(
ev3.transaction.data()?,
Expand Down

0 comments on commit cdafae1

Please sign in to comment.