Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit 958638c

Browse files
passyfacebook-github-bot
authored andcommitted
Fix tests (#5602)
Summary: [packer] Fix tests Tests broke recently: https://github.com/facebook/flipper/actions/runs/8943237349/job/24567505699 Pull Request resolved: #5602 Test Plan: ``` $ cargo test running 4 tests Computing manifest ▕████████████████████▏ test test::test_included_packlist_parses ... ok test tarsum::test::test_nested_archive_tarsum ... ok test tarsum::test::test_differently_ordered_archives ... ok Computing manifest ▕████████████████████▏ test test::test_manifest ... ok test result: ok. 4 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s ``` Reviewed By: lblasa Differential Revision: D57045431 Pulled By: passy fbshipit-source-id: 84bf5fb78d94ad4dadc24710cbdbcd55a1b1c699
1 parent 6cfcf17 commit 958638c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packer/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ mod test {
405405
fn test_included_packlist_parses() {
406406
let res: PackList =
407407
serde_yaml::from_str(DEFAULT_PACKLIST).expect("Default packlist doesn't deserialize");
408-
assert_eq!(res.0.len(), 4);
408+
assert_eq!(res.0.len(), 6);
409409
}
410410

411411
#[test]

0 commit comments

Comments
 (0)