diff options
| author | Hermes Agent <hermes@localhost> | 2026-08-12 07:48:21 +0000 |
|---|---|---|
| committer | Hermes Agent <hermes@localhost> | 2026-08-12 07:48:21 +0000 |
| commit | f967d698efd44473a9285e02d0109f3bb0641622 (patch) | |
| tree | c94975571db9426cf71b15c9e6d16346e438c7c6 /tests/model_validation.rs | |
| parent | 5e6cae20331f8e7cfd551b4656f0de852a4ad44c (diff) | |
Format native builder and satisfy clippy
Diffstat (limited to 'tests/model_validation.rs')
| -rw-r--r-- | tests/model_validation.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/model_validation.rs b/tests/model_validation.rs index f94a656..92a6640 100644 --- a/tests/model_validation.rs +++ b/tests/model_validation.rs @@ -56,7 +56,10 @@ fn controller_spec_preserves_the_vendored_controller_package_set() { "rsyslog", ] { assert!( - spec.packages.base.iter().any(|candidate| candidate == package), + spec.packages + .base + .iter() + .any(|candidate| candidate == package), "controller package set must contain {package}" ); } |