Skip to content

Commit 402d16b

Browse files
committed
Fixing issue #114
1 parent 8dc0b2a commit 402d16b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/commands/submit.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ cmd.handler = function(argv) {
7676

7777
let ratio = 0.0;
7878
for (let score of scores) {
79-
if (parseFloat(score[0]) > myRuntime)
79+
if (parseFloat(score[0]) >= myRuntime)
8080
ratio += parseFloat(score[1]);
8181
}
8282

0 commit comments

Comments
 (0)