Skip to content

Commit cbda3e8

Browse files
committed
clippy
1 parent 3d76ef5 commit cbda3e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/live_mode/ordering.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@ async fn blocks_and_events_arrive_in_order() -> anyhow::Result<()> {
7575
assert_eq!(data.len(), 5, "expected 5 events, got {}: {:?}", data.len(), data);
7676
assert!(
7777
data.windows(2).all(|w| w[0] <= w[1]),
78-
"block numbers must be non-decreasing: {:?}",
79-
data
78+
"block numbers must be non-decreasing: {data:?}",
8079
);
8180

8281
Ok(())

0 commit comments

Comments
 (0)