summaryrefslogtreecommitdiff
path: root/tests/run-tests-exp.py
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2022-08-18 16:57:45 +1000
committerJim Mussared <jim.mussared@gmail.com>2023-06-08 17:54:24 +1000
commit4216bc7d1351feb8199e4ebbff1a9598aa1c5b02 (patch)
tree5085738ef65ab377c221f290c7fa90ec2acd4d29 /tests/run-tests-exp.py
parent5e50975a6dd9466afafbcd012c00078093fe1f57 (diff)
tests: Replace umodule with module everywhere.
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'tests/run-tests-exp.py')
-rw-r--r--tests/run-tests-exp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-tests-exp.py b/tests/run-tests-exp.py
index 21b664533..bbb057f4c 100644
--- a/tests/run-tests-exp.py
+++ b/tests/run-tests-exp.py
@@ -5,8 +5,8 @@
# This script is intended to be run by the same interpreter executable
# which is to be tested, so should use minimal language functionality.
#
-import usys as sys
-import uos as os
+import sys
+import os
tests = ["basics", "micropython", "float", "import", "io", " misc", "unicode", "extmod", "unix"]