Skip to content

Commit

Permalink
Merge pull request #12 from jsaltermedialab/master
Browse files Browse the repository at this point in the history
fix infinite wait on failing tests
  • Loading branch information
jpoles1 authored Feb 12, 2020
2 parents 1f4eedb + 2b4d03b commit 052f42b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ func getCommandOutput(commandString string) chan float64 {
}
cmd.Wait()
}(reader)
if err := cmd.Start(); nil != err {
log.Fatalf("Error starting program: %s, %s", cmd.Path, err.Error())
if err := cmd.Run(); nil != err {
log.Fatalf("Error running program: %s, %s", cmd.Path, err)
}
return coverageFloatChannel
}
Expand Down

0 comments on commit 052f42b

Please sign in to comment.