We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45462c8 commit 28daab0Copy full SHA for 28daab0
1 file changed
magicblock-aperture/tests/blocks.rs
@@ -194,14 +194,8 @@ async fn test_get_blocks() {
194
195
// Verify each slot is within bounds [start, end]
196
for &slot in &blocks {
197
- assert!(
198
- slot >= start,
199
- "slot {slot} should be >= start {start}"
200
- );
201
202
- slot <= end,
203
- "slot {slot} should be <= end {end}"
204
+ assert!(slot >= start, "slot {slot} should be >= start {start}");
+ assert!(slot <= end, "slot {slot} should be <= end {end}");
205
}
206
207
// Verify slots are strictly increasing and contiguous
0 commit comments