We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c70cc19 commit 1910cbfCopy full SHA for 1910cbf
1 file changed
tests/integration.rs
@@ -851,12 +851,12 @@ mod cmp {
851
852
let a_path = tmp_dir.path().join("a");
853
let mut a = File::create(&a_path).unwrap();
854
- a.write_all(&bytes).unwrap();
+ a.write_all(bytes).unwrap();
855
a.write_all(b"A").unwrap();
856
857
let b_path = tmp_dir.path().join("b");
858
let mut b = File::create(&b_path).unwrap();
859
- b.write_all(&bytes).unwrap();
+ b.write_all(bytes).unwrap();
860
b.write_all(b"B").unwrap();
861
862
let mut cmd = Command::cargo_bin("diffutils")?;
0 commit comments