Increase the maximum line size

This commit is contained in:
Roey Darwish Dror
2018-07-03 14:33:48 +03:00
parent af02d8d761
commit 35dbab8beb
6 changed files with 18 additions and 81 deletions

View File

@@ -59,11 +59,7 @@ impl Terminal {
.set_bold(true),
);
let _ = write!(
&mut self.stdout,
"{}\n",
if succeeded { "OK" } else { "FAILED" }
);
let _ = write!(&mut self.stdout, "{}\n", if succeeded { "OK" } else { "FAILED" });
let _ = self.stdout.reset();
let _ = self.stdout.flush();