Skip to content

Commit

Permalink
tests: Tweak import
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Jul 18, 2024
1 parent 93cee5a commit 61e5a2a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ use auxiliary::{
test_project, test_report, CommandExt,
};
use fs_err as fs;
use tempfile::tempdir;

const SUBCOMMANDS: &[&str] = &["", "run", "report", "clean", "show-env", "nextest"];

Expand Down Expand Up @@ -180,7 +179,7 @@ fn merge() {

#[test]
fn merge_failure_mode_all() {
let tempdir = tempdir().unwrap();
let tempdir = tempfile::tempdir().unwrap();
merge_with_failure_mode(tempdir.path(), true);
}

Expand Down

0 comments on commit 61e5a2a

Please sign in to comment.