Skip to content
Snippets Groups Projects
Commit c2bfb0bb authored by Jono Wenger's avatar Jono Wenger
Browse files

Fix logic in TrackResults

parent 8f0121d7
No related branches found
No related tags found
No related merge requests found
......@@ -26,5 +26,5 @@ func TrackResults(resultsCh chan ds.EventReturn, numResults int) (bool, int, int
}
}
return (numTimeOut + numRoundFail) > 0, numRoundFail, numTimeOut
return (numTimeOut + numRoundFail) == 0, numRoundFail, numTimeOut
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment