Private
Public Access
1
0

Fix remaining clippy errors: restore Duration import, fix test assertion syntax

This commit is contained in:
2026-04-12 16:44:43 +00:00
parent 526c36a183
commit 12b49acba8
2 changed files with 3 additions and 3 deletions

View File

@ -499,10 +499,10 @@ mod tests {
#[test]
fn test_apt_backend_creation() {
let _backend = AptBackend::new();
#[allow(clippy::assertions_on_constants)]
assert!(true); // Test passes - backend creation successful
// Test passes if backend creation doesn't panic
}
#[test]
fn test_package_status_serialization() {
let status = PackageStatus::Installed;