Add a missing newline in the test.

This commit is contained in:
Vytautas Astrauskas
2020-04-16 12:21:01 -07:00
parent 4609c3c520
commit d9ec0f2b36
+1 -3
View File
@@ -6,7 +6,6 @@
use std::thread;
fn main() {
let data = Arc::new(Mutex::new(0));
let mut threads = Vec::new();
@@ -27,5 +26,4 @@ fn main() {
let data = Arc::try_unwrap(data).unwrap().into_inner().unwrap();
assert_eq!(data, 3);
}
}