Skip to content

Commit

Permalink
Python: adjust expected files
Browse files Browse the repository at this point in the history
  • Loading branch information
yoff committed Jun 27, 2024
1 parent 8fabcc6 commit 5667e83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/ql/test/extractor-tests/flags/Flags.expected
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
| options.all | False |
| options.colorize | True |
| options.context_cost | 11 |
| options.extract_stdlib | True |
| options.extract_stdlib | False |
| options.guess | False |
| options.help | False |
| options.ignore_missing_modules | False |
Expand Down
4 changes: 2 additions & 2 deletions python/ql/test/library-tests/dataflow/coverage-py3/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __length_hint__(self):
def test_length_hint():
import operator

with_length_hint = With_length_hint() #$ arg1="with_length_hint" func=With_length_hint.__length_hint__
with_length_hint = With_length_hint() #$ MISSING: arg1="with_length_hint" func=With_length_hint.__length_hint__
operator.length_hint(with_length_hint)


Expand All @@ -68,5 +68,5 @@ def __index__(self):
def test_index():
import operator

with_index = With_index() #$ arg1="with_index" func=With_index.__index__
with_index = With_index() #$ MISSING: arg1="with_index" func=With_index.__index__
operator.index(with_index)

0 comments on commit 5667e83

Please sign in to comment.