Skip to content

Commit

Permalink
fix test issue that didn't handle events properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivansete-status committed Jan 8, 2025
1 parent 4cdbacd commit bbcf401
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions waku-bindings/tests/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ async fn test_echo_messages(
*msg_lock = evt.waku_message;
}
}
WakuEvent::RelayTopicHealthChange(_evt) => {
// dbg!("Relay topic change evt", evt);
}
WakuEvent::ConnectionChange(_evt) => {
// dbg!("Conn change evt", evt);
}
WakuEvent::Unrecognized(err) => panic!("Unrecognized waku event: {:?}", err),
_ => panic!("event case not expected"),
};
Expand Down

0 comments on commit bbcf401

Please sign in to comment.