Skip to content

Commit 28daab0

Browse files
committed
fix: fmt
1 parent 45462c8 commit 28daab0

1 file changed

Lines changed: 2 additions & 8 deletions

File tree

magicblock-aperture/tests/blocks.rs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -194,14 +194,8 @@ async fn test_get_blocks() {
194194

195195
// Verify each slot is within bounds [start, end]
196196
for &slot in &blocks {
197-
assert!(
198-
slot >= start,
199-
"slot {slot} should be >= start {start}"
200-
);
201-
assert!(
202-
slot <= end,
203-
"slot {slot} should be <= end {end}"
204-
);
197+
assert!(slot >= start, "slot {slot} should be >= start {start}");
198+
assert!(slot <= end, "slot {slot} should be <= end {end}");
205199
}
206200

207201
// Verify slots are strictly increasing and contiguous

0 commit comments

Comments
 (0)