diff --git a/crates/boot/src/autoconfigure/linux.rs b/crates/boot/src/autoconfigure/linux.rs index 9794141..d7ec70c 100644 --- a/crates/boot/src/autoconfigure/linux.rs +++ b/crates/boot/src/autoconfigure/linux.rs @@ -26,7 +26,6 @@ const LINUX_CHAINLOAD_ACTION_PREFIX: &str = "linux-chainload-"; /// The empty string represents the root of the filesystem. const SCAN_LOCATIONS: &[&str] = &["\\boot", "\\"]; - /// This is really silly, but if what we are booting is the Canonical stubble stub, /// there is a chance it will assert that the load options are non-empty. /// Technically speaking, load options can be empty. However, it assumes load options diff --git a/crates/parsing/src/lib.rs b/crates/parsing/src/lib.rs index 7e6b904..ba0bb38 100644 --- a/crates/parsing/src/lib.rs +++ b/crates/parsing/src/lib.rs @@ -347,7 +347,6 @@ mod tests { assert!(config.ends_with('\n')); } - #[test] fn kernel_prefix_exact_match() { assert_eq!( @@ -381,7 +380,6 @@ mod tests { assert!(match_kernel_prefix("vmlinuz6.1", LINUX_KERNEL_PREFIXES).is_none()); } - #[test] fn initramfs_candidates_with_suffix() { let candidates: Vec<_> = initramfs_candidates("-6.1.0", LINUX_INITRAMFS_PREFIXES).collect();