mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
Merge pull request #5182 from sylvestre/clippy_
Fix some of the recent clippy warnings
This commit is contained in:
commit
0b9c829bce
24 changed files with 54 additions and 58 deletions
|
@ -2026,12 +2026,12 @@ fn test_cp_reflink_always_override() {
|
|||
const USERDIR: &str = "dir/";
|
||||
const MOUNTPOINT: &str = "mountpoint/";
|
||||
|
||||
let src1_path: &str = &vec![MOUNTPOINT, USERDIR, "src1"].concat();
|
||||
let src2_path: &str = &vec![MOUNTPOINT, USERDIR, "src2"].concat();
|
||||
let dst_path: &str = &vec![MOUNTPOINT, USERDIR, "dst"].concat();
|
||||
let src1_path: &str = &[MOUNTPOINT, USERDIR, "src1"].concat();
|
||||
let src2_path: &str = &[MOUNTPOINT, USERDIR, "src2"].concat();
|
||||
let dst_path: &str = &[MOUNTPOINT, USERDIR, "dst"].concat();
|
||||
|
||||
scene.fixtures.mkdir(ROOTDIR);
|
||||
scene.fixtures.mkdir(vec![ROOTDIR, USERDIR].concat());
|
||||
scene.fixtures.mkdir([ROOTDIR, USERDIR].concat());
|
||||
|
||||
// Setup:
|
||||
// Because neither `mkfs.btrfs` not btrfs `mount` options allow us to have a mountpoint owned
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue