1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +00:00

Merge pull request #6077 from cakebaker/fix_imported_redundantly_warnings

Fix two "item x is imported redundantly" warnings
This commit is contained in:
Sylvestre Ledru 2024-03-15 15:37:52 +01:00 committed by GitHub
commit ffc476d700
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -650,7 +650,7 @@ mod tests {
use super::*; use super::*;
#[cfg(unix)] #[cfg(unix)]
use std::os::unix; use std::os::unix;
use std::path::{Component, Path, PathBuf}; use std::path::{Component, PathBuf};
#[cfg(unix)] #[cfg(unix)]
use tempfile::tempdir; use tempfile::tempdir;

View file

@ -5,7 +5,7 @@
// spell-checker:ignore (formats) cymdhm cymdhms mdhm mdhms ymdhm ymdhms datetime mktime // spell-checker:ignore (formats) cymdhm cymdhms mdhm mdhms ymdhm ymdhms datetime mktime
use crate::common::util::{AtPath, TestScenario}; use crate::common::util::{AtPath, TestScenario};
use filetime::{self, set_symlink_file_times, FileTime}; use filetime::{set_symlink_file_times, FileTime};
use std::fs::remove_file; use std::fs::remove_file;
use std::path::PathBuf; use std::path::PathBuf;