1
0
mirror of https://github.com/uutils/coreutils synced 2024-07-01 06:54:36 +00:00

lint: fix clippy::redundant_clone of test_dd.rs test_cp.rs

This commit is contained in:
Krysztal112233 2024-03-22 17:38:54 +08:00
parent 35c39a65e5
commit ef8c379370
No known key found for this signature in database
GPG Key ID: 331615739A596A02
2 changed files with 3 additions and 3 deletions

View File

@ -3306,7 +3306,7 @@ fn test_symbolic_link_file() {
#[test]
fn test_src_base_dot() {
let ts = TestScenario::new(util_name!());
let at = ts.fixtures.clone();
let at = &ts.fixtures;
at.mkdir("x");
at.mkdir("y");
ts.ucmd()

View File

@ -1641,7 +1641,7 @@ fn test_seek_past_dev() {
fn test_reading_partial_blocks_from_fifo() {
// Create the FIFO.
let ts = TestScenario::new(util_name!());
let at = ts.fixtures.clone();
let at = &ts.fixtures;
at.mkfifo("fifo");
let fifoname = at.plus_as_string("fifo");
@ -1682,7 +1682,7 @@ fn test_reading_partial_blocks_from_fifo() {
fn test_reading_partial_blocks_from_fifo_unbuffered() {
// Create the FIFO.
let ts = TestScenario::new(util_name!());
let at = ts.fixtures.clone();
let at = ts.fixtures;
at.mkfifo("fifo");
let fifoname = at.plus_as_string("fifo");