1
0
Fork 0

fixed jslint error messages

This commit is contained in:
Frank Celler 2017-07-27 16:01:45 +02:00
parent 9786b198c2
commit 00a6cbab64
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ function testAlgo(a, p) {
break;
}
} while(i-- >= 0);
if (i == 0) {
if (i === 0) {
assertTrue(false, "timeout in pregel execution");
}
}
@ -187,7 +187,7 @@ function exampleTestSuite () {
break;
}
} while(i-- >= 0);
if (i == 0) {
if (i === 0) {
assertTrue(false, "timeout in pregel execution");
}
}