From b7169cf1a3f5c40bac5dca5813e7d419d9cefbb5 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 27 Oct 2024 02:10:11 +0900 Subject: [PATCH] Apply unqualified_local_imports lint --- tests/test.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test.rs b/tests/test.rs index 05f370e..b25cf75 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -10,11 +10,13 @@ use std::{ sync::Mutex, }; +use self::auxiliary::{ + cargo_bin_exe, cargo_hack, has_rustup, has_stable_toolchain, CommandExt, TARGET, +}; + /// Multiple tests may download a new toolchain at the same time static RUSTUP_TOOLCHAIN_CHANGES: Mutex<()> = Mutex::new(()); -use auxiliary::{cargo_bin_exe, cargo_hack, has_rustup, has_stable_toolchain, CommandExt, TARGET}; - #[test] fn failures() { cargo_bin_exe().assert_failure("real");