Skip to content

Commit c7f6e36

Browse files
committed
py: Inline expectation should have space before $
1 parent 2f31621 commit c7f6e36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ql/test/library-tests/dataflow/typetracking/attribute_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def getattr_indirect_read():
107107
attr = "foo"
108108
x = SomeClass() # $ tracked=foo
109109
x.foo = tracked # $ tracked tracked=foo
110-
y = getattr(x, attr) #$tracked tracked=foo
110+
y = getattr(x, attr) # $ tracked tracked=foo
111111
do_stuff(y) # $ tracked
112112

113113
# Via `__dict__` -- not currently implemented.

0 commit comments

Comments
 (0)