Skip to content

Commit

Permalink
test_env: add unix specific import
Browse files Browse the repository at this point in the history
  • Loading branch information
WaleedKhamees committed May 22, 2024
1 parent 136acf5 commit ac87eb4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/by-util/test_env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@
// file that was distributed with this source code.
// spell-checker:ignore (words) bamf chdir rlimit prlimit COMSPEC cout cerr FFFD

use crate::common::util::{TestScenario, UChild};
use crate::common::util::TestScenario;
#[cfg(unix)]
use crate::common::util::UChild;
#[cfg(unix)]
use nix::sys::signal::Signal;
use regex::Regex;
use std::env;
use std::path::Path;
#[cfg(unix)]
use std::process::Command;
use tempfile::tempdir;

Expand Down

0 comments on commit ac87eb4

Please sign in to comment.