Skip to content

Commit b5703cd

Browse files
committed
Python: link to FP report in test file
1 parent 6b168de commit b5703cd

File tree

1 file changed

+1
-1
lines changed
  • python/ql/test/query-tests/Expressions/Regex

1 file changed

+1
-1
lines changed

python/ql/test/query-tests/Expressions/Regex/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
re.match(b"abc$(?m)", b"abc")
3737
re.match(b"abc$()", b"abc")
3838
re.match(b"((a$)|b)*", b"bba")
39-
re.match(b"((a$)|b){4}", b"bbba")
39+
re.match(b"((a$)|b){4}", b"bbba") # Inspired by FP report here: https://github.com/github/codeql/issues/2403
4040
re.match(b"((a$).*)", b"a")
4141
re.match("(\Aab$|\Aba$)$\Z", "ab")
4242
re.match(b"((a$\Z)|b){4}", b"bbba")

0 commit comments

Comments
 (0)