Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/by-util/test_uptime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
// spell-checker:ignore wincode serde utmp runlevel testusr testx boottime
#![allow(clippy::cast_possible_wrap, clippy::unreadable_literal)]

use uutests::at_and_ucmd;
use uutests::util::TestScenario;
use uutests::{new_ucmd, util_name};
use uutests::{at_and_ucmd, new_ucmd};

use regex::Regex;

Expand Down Expand Up @@ -47,6 +45,8 @@ fn test_uptime_for_file_without_utmpx_records() {
#[test]
#[cfg(all(unix, feature = "cp"))]
fn test_uptime_with_fifo() {
use uutests::{util::TestScenario, util_name};

// This test can go on forever in the CI in some cases, might need aborting
// Sometimes writing to the pipe is broken
let ts = TestScenario::new(util_name!());
Expand Down
Loading