Skip to content

Commit ce6a211

Browse files
committed
update inconsistency comment for CWE-506
1 parent bf36137 commit ce6a211

File tree

1 file changed

+1
-1
lines changed
  • javascript/ql/test/query-tests/Security/CWE-506

1 file changed

+1
-1
lines changed

javascript/ql/test/query-tests/Security/CWE-506/tst.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ eval(totallyHarmlessString); // OK: throws parse
44

55
var test = "0123456789";
66
try {
7-
eval(test+"n"); // OK, but currently flagged
7+
eval(test+"n"); // OK, but currently flagged [INCONSISTENCY]
88
console.log("Bigints supported.");
99
} catch(e) {
1010
console.log("Bigints not supported.");

0 commit comments

Comments
 (0)