File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -470,23 +470,23 @@ mod test {
470
470
fn into_path_from_pred ( ) {
471
471
let pred = convert_path ( predicate:: eq ( path:: Path :: new ( "hello.md" ) ) ) ;
472
472
let case = pred. find_case ( false , path:: Path :: new ( "hello.md" ) ) ;
473
- println ! ( "Failing case: {:?}" , case ) ;
473
+ println ! ( "Failing case: {case :?}" ) ;
474
474
assert ! ( case. is_none( ) ) ;
475
475
}
476
476
477
477
#[ test]
478
478
fn into_path_from_bytes ( ) {
479
479
let pred = convert_path ( b"hello\n " as & [ u8 ] ) ;
480
480
let case = pred. find_case ( false , path:: Path :: new ( "tests/fixture/hello.txt" ) ) ;
481
- println ! ( "Failing case: {:?}" , case ) ;
481
+ println ! ( "Failing case: {case :?}" ) ;
482
482
assert ! ( case. is_none( ) ) ;
483
483
}
484
484
485
485
#[ test]
486
486
fn into_path_from_str ( ) {
487
487
let pred = convert_path ( "hello\n " ) ;
488
488
let case = pred. find_case ( false , path:: Path :: new ( "tests/fixture/hello.txt" ) ) ;
489
- println ! ( "Failing case: {:?}" , case ) ;
489
+ println ! ( "Failing case: {case :?}" ) ;
490
490
assert ! ( case. is_none( ) ) ;
491
491
}
492
492
}
You can’t perform that action at this time.
0 commit comments