Skip to content

Commit bf8307f

Browse files
authored
Python: Fix flags test
In github@25cb52a I accidentally introduced an extra `not` where none existed before. Whoops!
1 parent 5c50ed0 commit bf8307f

File tree

1 file changed

+1
-1
lines changed
  • python/ql/test/extractor-tests/flags

1 file changed

+1
-1
lines changed

python/ql/test/extractor-tests/flags/Flags.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import python
22

33
from string k, string v
44
where
5-
not k.matches("options.%") and
5+
k.matches("options.%") and
66
not k.matches("options.verbos%") and
77
py_flags_versioned(k, v, _)
88
select k, v

0 commit comments

Comments
 (0)