clippy: use clone_from rather than clone

This commit is contained in:
Bennet Bleßmann
2024-07-06 13:03:14 +02:00
parent ceac9c9095
commit 1b16c6c73f

View File

@@ -191,7 +191,7 @@ impl Machine {
printer.quoted = true;
printer.max_depth = 1000; // NOTE: set this to 0 for unbounded depth
printer.double_quotes = true;
printer.var_names = var_names.clone();
printer.var_names.clone_from(&var_names);
let outputter = printer.print();
@@ -488,12 +488,8 @@ mod tests {
} else if let Some(result) = block.strip_prefix("result") {
i += 1;
if let Some(Ok(ref last_result)) = last_result {
println!(
"\n\n=====Result No. {}=======\n{}\n===============",
i,
last_result.to_string().trim()
);
assert_eq!(last_result.to_string().trim(), result.to_string().trim(),)
println!("\n\n=====Result No. {i}=======\n{last_result}\n===============");
assert_eq!(last_result.to_string(), result.to_string().trim(),)
}
}
}