mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
lint: fix clippy::redundant_clone of test_dd.rs test_cp.rs
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -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");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user