Remove unneeded clone() from tests

The expected.clone() calls were not needed for the tests. This is
just to keep consistency between the test cases.
This commit is contained in:
Erich Cordoba 2018-09-18 18:32:29 -05:00
parent 79fcc58b24
commit 3d662639f6
1 changed files with 4 additions and 4 deletions

View File

@ -775,7 +775,7 @@ fn main() {
assert_eq!(2+2, 4);
}".to_string();
let output = make_test(input, None, false, &opts);
assert_eq!(output, (expected.clone(), 2));
assert_eq!(output, (expected, 2));
}
#[test]
@ -973,7 +973,7 @@ fn main() {
assert_eq!(2+2, 4);
}".to_string();
let output = make_test(input, None, false, &opts);
assert_eq!(output, (expected.clone(), 2));
assert_eq!(output, (expected, 2));
}
#[test]
@ -988,7 +988,7 @@ assert_eq!(2+2, 4);";
//Ceci n'est pas une `fn main`
assert_eq!(2+2, 4);".to_string();
let output = make_test(input, None, true, &opts);
assert_eq!(output, (expected.clone(), 1));
assert_eq!(output, (expected, 1));
}
#[test]
@ -1003,6 +1003,6 @@ assert_eq!(2+2, 4);".to_string();
assert_eq!(2+2, 4);
}".to_string();
let output = make_test(input, None, false, &opts);
assert_eq!(output, (expected.clone(), 1));
assert_eq!(output, (expected, 1));
}
}