Python: Fix small typo in test-output

Spotted by yoff in https://github.com/github/codeql/pull/5069#discussion_r570063207
This commit is contained in:
Rasmus Wriedt Larsen
2021-02-04 12:09:07 +01:00
parent 5db1984315
commit ac0f2d37db
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
import mypkg.foo as _foo
import mypkg.bar as _bar
print(_foo) # <module 'mypkg.bar' ...
print(_foo) # <module 'mypkg.foo' ...
print(_bar) # <module 'mypkg.bar' ...

View File

@@ -4,7 +4,7 @@ print(foo) # 42
import mypkg.foo
print(foo) # 42
print(mypkg.foo) # <module 'mypkg.bar' ...
print(mypkg.foo) # <module 'mypkg.foo' ...
from mypkg import foo
print(foo) # <module 'mypkg.bar' ...
print(foo) # <module 'mypkg.foo' ...