Skip to content

Commit 973ca41

Browse files
committed
Fixup BitwiseSignCheck
1 parent 911e435 commit 973ca41

File tree

1 file changed

+1
-1
lines changed
  • javascript/ql/test/query-tests/Expressions/BitwiseSignCheck

1 file changed

+1
-1
lines changed

javascript/ql/test/query-tests/Expressions/BitwiseSignCheck/tst.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ console.log(bitIsSet(-1, 31)); // prints 'false'
1010
x = -1;
1111
console.log((x | 0) > (0)); // prints 'false'
1212

13-
console.log((x >>> 0) > 0); // prints 'true' // $ Alert
13+
console.log((x >>> 0) > 0); // $ Alert - prints 'true'
1414

1515

1616
console.log((x << 16 >> 16) > 0); // prints 'false'

0 commit comments

Comments
 (0)