From 9b93f70f4c5a06d6ee221d3537067bc8d3f5b7c6 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 27 Oct 2024 02:01:06 +0900 Subject: [PATCH] Apply unqualified_local_imports lint --- tests/test.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test.rs b/tests/test.rs index b53f15c..876c4a7 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -6,11 +6,12 @@ mod auxiliary; use std::path::Path; -use auxiliary::{ +use fs_err as fs; + +use self::auxiliary::{ assert_output, cargo_llvm_cov, fixtures_path, normalize_output, perturb_one_header, test_project, test_report, CommandExt, }; -use fs_err as fs; const SUBCOMMANDS: &[&str] = &["", "run", "report", "clean", "show-env", "nextest"];