Skip to content

Commit ca1dc25

Browse files
committed
Update archive_inclusion.rs
1 parent 11b9c28 commit ca1dc25

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

cli/tests/cli/stdio/archive_inclusion.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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)"

0 commit comments

Comments
 (0)