mirror of
https://github.com/uutils/coreutils
synced 2024-11-15 01:17:09 +00:00
tests: silence clippy warnings for unused_imports
This commit is contained in:
parent
a0f538f2e8
commit
3300d80e3f
1 changed files with 3 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
#![allow(unused_imports)]
|
||||
mod common;
|
||||
|
||||
use common::util::TestScenario;
|
||||
|
@ -25,6 +26,7 @@ fn execution_phrase_double() {
|
|||
|
||||
#[test]
|
||||
#[cfg(feature = "ls")]
|
||||
#[cfg(any(unix, windows))]
|
||||
fn execution_phrase_single() {
|
||||
use std::process::Command;
|
||||
|
||||
|
@ -63,6 +65,7 @@ fn util_name_double() {
|
|||
|
||||
#[test]
|
||||
#[cfg(feature = "sort")]
|
||||
#[cfg(any(unix, windows))]
|
||||
fn util_name_single() {
|
||||
use std::{
|
||||
io::Write,
|
||||
|
|
Loading…
Reference in a new issue