1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

Fix some trivial clippy warnings

This commit is contained in:
Sylvestre Ledru 2023-04-20 23:00:46 +02:00
parent 47e61f064c
commit efa361dd7c
5 changed files with 11 additions and 11 deletions

View file

@ -1392,15 +1392,14 @@ fn test_cp_target_file_dev_null() {
fn test_cp_one_file_system() {
use crate::common::util::AtPath;
use walkdir::WalkDir;
let scene = TestScenario::new(util_name!());
let at = &scene.fixtures;
// Test must be run as root (or with `sudo -E`)
if scene.cmd("whoami").run().stdout_str() != "root\n" {
return;
}
let at = scene.fixtures.clone();
let at_src = AtPath::new(&at.plus(TEST_MOUNT_COPY_FROM_FOLDER));
let at_dst = AtPath::new(&at.plus(TEST_COPY_TO_FOLDER_NEW));