Skip to content

Commit

Permalink
Improve performance of test runner
Browse files Browse the repository at this point in the history
Context: #27
  • Loading branch information
laniakea64 committed Mar 25, 2023
1 parent adf500b commit b69457f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,8 @@ fn main() -> io::Result<()> {
.env("CASE", case)
.env("OUTPUT", &output)
.env("HOME", env::current_dir().unwrap())
.output()
.unwrap()
.status;
.status()
.unwrap();

if !status.success() {
panic!("Vim failed with status: {}", status);
Expand Down

0 comments on commit b69457f

Please sign in to comment.