Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy committed Sep 1, 2024
1 parent 7f8b6bc commit 200a46b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/katana/primitives/src/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ mod test {
#[test]
fn parse_works() {
fn helper(token: &str) -> ContinuationToken {
ContinuationToken::parse(&token).unwrap()
ContinuationToken::parse(token).unwrap()
}
assert_eq!(helper("0,0,0"), ContinuationToken { block_n: 0, txn_n: 0, event_n: 0 });
assert_eq!(helper("1e,ff,4"), ContinuationToken { block_n: 30, txn_n: 255, event_n: 4 });
Expand Down

0 comments on commit 200a46b

Please sign in to comment.