summaryrefslogtreecommitdiff
path: root/tests/stage_graph.rs
diff options
context:
space:
mode:
authorHermes Agent <hermes@localhost>2026-08-12 07:48:21 +0000
committerHermes Agent <hermes@localhost>2026-08-12 07:48:21 +0000
commitf967d698efd44473a9285e02d0109f3bb0641622 (patch)
treec94975571db9426cf71b15c9e6d16346e438c7c6 /tests/stage_graph.rs
parent5e6cae20331f8e7cfd551b4656f0de852a4ad44c (diff)
Format native builder and satisfy clippy
Diffstat (limited to 'tests/stage_graph.rs')
-rw-r--r--tests/stage_graph.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/stage_graph.rs b/tests/stage_graph.rs
index cd6fc93..13a297d 100644
--- a/tests/stage_graph.rs
+++ b/tests/stage_graph.rs
@@ -34,7 +34,10 @@ fn stage_graph_orders_artifact_producers_before_consumers() {
Stage::Manifest,
]
);
- assert_eq!(plan.dependencies(Stage::Package), &[Stage::FinalizeRootfs, Stage::BuildInitramfs]);
+ assert_eq!(
+ plan.dependencies(Stage::Package),
+ &[Stage::FinalizeRootfs, Stage::BuildInitramfs]
+ );
assert_eq!(plan.dependencies(Stage::BuildInitramfs), &[Stage::Install]);
assert_eq!(plan.dependencies(Stage::Manifest), &[Stage::Package]);
}