Skip to content

Commit 1af6d97

Browse files
committed
Python: Remove straggling f-: annotations
1 parent f66dcca commit 1af6d97

File tree

1 file changed

+2
-2
lines changed
  • python/ql/test/library-tests/frameworks/stdlib

1 file changed

+2
-2
lines changed

python/ql/test/library-tests/frameworks/stdlib/Encoding.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import marshal
33
import base64
44

5-
pickle.dumps(obj) # $ MISSING: f-:encodeInput=obj f-:encodeOutput=Attribute() f-:encodeFormat=pickle f-:encodeMayExecuteInput
6-
marshal.dumps(obj) # $ MISSING: f-:encodeInput=obj f-:encodeOutput=Attribute() f-:encodeFormat=marshal f-:encodeMayExecuteInput
5+
pickle.dumps(obj) # $ MISSING: encodeInput=obj encodeOutput=Attribute() encodeFormat=pickle encodeMayExecuteInput
6+
marshal.dumps(obj) # $ MISSING: encodeInput=obj encodeOutput=Attribute() encodeFormat=marshal encodeMayExecuteInput
77

88
# TODO: These tests should be merged with python/ql/test/experimental/dataflow/tainttracking/defaultAdditionalTaintStep/test_string.py
99
base64.b64encode(bs) # $ encodeInput=bs encodeOutput=Attribute() encodeFormat=Base64

0 commit comments

Comments
 (0)