@@ -472,7 +472,11 @@ mod tests {
472472 !result. contains( & offset) ,
473473 "offset file_b should be excluded, got: {result:?}"
474474 ) ;
475- assert_eq ! ( result. len( ) , 3 , "expected c/d/e after file_b, got: {result:?}" ) ;
475+ assert_eq ! (
476+ result. len( ) ,
477+ 3 ,
478+ "expected c/d/e after file_b, got: {result:?}"
479+ ) ;
476480
477481 // Test 2: Offset at file_a → should return b, c, d, e
478482 let offset = Path :: from ( format ! ( "{test_dir}/file_a.txt" ) ) ;
@@ -482,8 +486,15 @@ mod tests {
482486 . try_collect ( )
483487 . await
484488 . unwrap ( ) ;
485- assert ! ( !result. contains( & offset) , "offset file_a should be excluded" ) ;
486- assert_eq ! ( result. len( ) , 4 , "expected b/c/d/e after file_a, got: {result:?}" ) ;
489+ assert ! (
490+ !result. contains( & offset) ,
491+ "offset file_a should be excluded"
492+ ) ;
493+ assert_eq ! (
494+ result. len( ) ,
495+ 4 ,
496+ "expected b/c/d/e after file_a, got: {result:?}"
497+ ) ;
487498
488499 // Test 3: Offset at file_e (last) → should return empty
489500 let offset = Path :: from ( format ! ( "{test_dir}/file_e.txt" ) ) ;
@@ -493,7 +504,10 @@ mod tests {
493504 . try_collect ( )
494505 . await
495506 . unwrap ( ) ;
496- assert ! ( result. is_empty( ) , "offset at last file should return empty, got: {result:?}" ) ;
507+ assert ! (
508+ result. is_empty( ) ,
509+ "offset at last file should return empty, got: {result:?}"
510+ ) ;
497511
498512 // Test 4: Offset before all files → should return all 5
499513 let offset = Path :: from ( format ! ( "{test_dir}/file" ) ) ;
@@ -503,7 +517,11 @@ mod tests {
503517 . try_collect ( )
504518 . await
505519 . unwrap ( ) ;
506- assert_eq ! ( result. len( ) , 5 , "offset before all files should return all, got: {result:?}" ) ;
520+ assert_eq ! (
521+ result. len( ) ,
522+ 5 ,
523+ "offset before all files should return all, got: {result:?}"
524+ ) ;
507525
508526 // Test 5: Every returned entry is strictly greater than offset
509527 let offset = Path :: from ( format ! ( "{test_dir}/file_c.txt" ) ) ;
0 commit comments