summaryrefslogtreecommitdiffstatshomepage
path: root/tests/import/import2a.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-10-11 12:30:32 +1100
committerDamien George <damien.p.george@gmail.com>2016-10-11 12:30:32 +1100
commit5e22afce41de8c87071d8fc149a6ba3cd8762819 (patch)
treecc8960bfe8bb7949ad5dd6a099ae3e390cb58359 /tests/import/import2a.py
parente49153fb98ade48395b80271093bd763e771b3da (diff)
downloadmicropython-5e22afce41de8c87071d8fc149a6ba3cd8762819.tar.gz
micropython-5e22afce41de8c87071d8fc149a6ba3cd8762819.zip
tests: Improve test coverage of py/compile.c.
Diffstat (limited to 'tests/import/import2a.py')
-rw-r--r--tests/import/import2a.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/import/import2a.py b/tests/import/import2a.py
index ce32b10b1b..def6aeb6aa 100644
--- a/tests/import/import2a.py
+++ b/tests/import/import2a.py
@@ -1,2 +1,5 @@
from import1b import var
print(var)
+
+from import1b import var as var2
+print(var2)