mirror of https://gitee.com/bigwinds/arangodb
fixed jslint error messages
This commit is contained in:
parent
9786b198c2
commit
00a6cbab64
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue