Skip to content

Commit bc448fe

Browse files
authored
Merge pull request #5088 from RasmusWL/fix-small-typo
Python: Fix small typo in test-output
2 parents d41ea6c + ac0f2d3 commit bc448fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import mypkg.foo as _foo
22
import mypkg.bar as _bar
3-
print(_foo) # <module 'mypkg.bar' ...
3+
print(_foo) # <module 'mypkg.foo' ...
44
print(_bar) # <module 'mypkg.bar' ...

python/ql/test/experimental/dataflow/import-helper/test7.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import mypkg.foo
66
print(foo) # 42
7-
print(mypkg.foo) # <module 'mypkg.bar' ...
7+
print(mypkg.foo) # <module 'mypkg.foo' ...
88

99
from mypkg import foo
10-
print(foo) # <module 'mypkg.bar' ...
10+
print(foo) # <module 'mypkg.foo' ...

0 commit comments

Comments
 (0)