1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +00:00

Merge pull request #7629 from cakebaker/uptime_fix_unused_import_warning

uptime: fix "unused import" warning in test
This commit is contained in:
Dorian Péron 2025-04-01 12:09:39 +02:00 committed by GitHub
commit e4fa68c57d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,6 +6,7 @@
// spell-checker:ignore bincode serde utmp runlevel testusr testx // spell-checker:ignore bincode serde utmp runlevel testusr testx
#![allow(clippy::cast_possible_wrap, clippy::unreadable_literal)] #![allow(clippy::cast_possible_wrap, clippy::unreadable_literal)]
#[cfg(not(any(target_os = "openbsd", target_os = "freebsd")))]
use uutests::at_and_ucmd; use uutests::at_and_ucmd;
use uutests::new_ucmd; use uutests::new_ucmd;
use uutests::util::TestScenario; use uutests::util::TestScenario;