Skip to content

Commit 5875498

Browse files
committed
Python: Update type tracking tests
No longer missing! 🎉
1 parent ad13fba commit 5875498

File tree

1 file changed

+4
-4
lines changed
  • python/ql/test/experimental/dataflow/typetracking_imports/pkg

1 file changed

+4
-4
lines changed

python/ql/test/experimental/dataflow/typetracking_imports/pkg/use.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ def test_direct_import():
66

77

88
def test_alias_problem():
9-
from .alias_problem import foo # $ MISSING: tracked
10-
print(foo) # $ MISSING: tracked
9+
from .alias_problem import foo # $ tracked
10+
print(foo) # $ tracked
1111

1212
test_alias_problem()
1313

@@ -34,8 +34,8 @@ def test_alias_only_direct():
3434

3535

3636
def test_problem_absolute_import():
37-
from pkg.problem_absolute_import import foo # $ MISSING: tracked
38-
print(foo) # $ MISSING: tracked
37+
from pkg.problem_absolute_import import foo # $ tracked
38+
print(foo) # $ tracked
3939

4040
test_problem_absolute_import()
4141

0 commit comments

Comments
 (0)