File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -602,10 +602,7 @@ fn stdio_archive_inclusion_archive_first() {
602602
603603 // Create source archive with entries
604604 let source_archive = base. join ( "source.pna" ) ;
605- create_test_archive (
606- & source_archive,
607- & [ ( "from_archive.txt" , "archive content" ) ] ,
608- ) ;
605+ create_test_archive ( & source_archive, & [ ( "from_archive.txt" , "archive content" ) ] ) ;
609606
610607 // Create filesystem file
611608 fs:: write ( base. join ( "after.txt" ) , "after content" ) . unwrap ( ) ;
@@ -737,7 +734,10 @@ fn stdio_archive_inclusion_combined_filters() {
737734 let entry_names: HashSet < String > = get_archive_entry_names ( & output_archive)
738735 . into_iter ( )
739736 . collect ( ) ;
740- assert ! ( entry_names. contains( "foo.txt" ) , "foo.txt should be included" ) ;
737+ assert ! (
738+ entry_names. contains( "foo.txt" ) ,
739+ "foo.txt should be included"
740+ ) ;
741741 assert ! (
742742 !entry_names. contains( "bar.txt" ) ,
743743 "bar.txt should be excluded (doesn't match include)"
You can’t perform that action at this time.
0 commit comments