aboutsummaryrefslogtreecommitdiff
path: root/tests/micropython
diff options
context:
space:
mode:
Diffstat (limited to 'tests/micropython')
-rw-r--r--tests/micropython/native_const.py6
-rw-r--r--tests/micropython/native_const.py.exp1
2 files changed, 0 insertions, 7 deletions
diff --git a/tests/micropython/native_const.py b/tests/micropython/native_const.py
index f2db82ca4..611b39d8f 100644
--- a/tests/micropython/native_const.py
+++ b/tests/micropython/native_const.py
@@ -5,9 +5,3 @@ def f():
return 123456789012345678901234567890
print(f())
-
-@micropython.native
-def g():
- return 1.2
-
-print(g())
diff --git a/tests/micropython/native_const.py.exp b/tests/micropython/native_const.py.exp
index eea238e6f..1d52d220f 100644
--- a/tests/micropython/native_const.py.exp
+++ b/tests/micropython/native_const.py.exp
@@ -1,2 +1 @@
123456789012345678901234567890
-1.2