diff options
author | Damien George <damien.p.george@gmail.com> | 2015-02-15 01:57:39 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-02-15 01:57:39 +0000 |
commit | ed8b4da0db693dc6cc18c73b5fc43faad4801134 (patch) | |
tree | f170685b97a4b7e77b3bc9d00c1c17bcfc6e59a2 | |
parent | f6532bb9e054fd20af5063b1e77ef98863f36c84 (diff) | |
download | micropython-ed8b4da0db693dc6cc18c73b5fc43faad4801134.tar.gz micropython-ed8b4da0db693dc6cc18c73b5fc43faad4801134.zip |
tests: Remove obsolete test; don't use fp in micropython/ tests.
-rw-r--r-- | tests/basics/class_subclass_builtin.py | 6 | ||||
-rw-r--r-- | tests/micropython/native_const.py | 6 | ||||
-rw-r--r-- | tests/micropython/native_const.py.exp | 1 |
3 files changed, 0 insertions, 13 deletions
diff --git a/tests/basics/class_subclass_builtin.py b/tests/basics/class_subclass_builtin.py deleted file mode 100644 index 7eb7d44b4d..0000000000 --- a/tests/basics/class_subclass_builtin.py +++ /dev/null @@ -1,6 +0,0 @@ -#class mylist(list): -# pass - -#l = mylist() -#l.append(1) -#print(l) diff --git a/tests/micropython/native_const.py b/tests/micropython/native_const.py index f2db82ca41..611b39d8fe 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 eea238e6f5..1d52d220f8 100644 --- a/tests/micropython/native_const.py.exp +++ b/tests/micropython/native_const.py.exp @@ -1,2 +1 @@ 123456789012345678901234567890 -1.2 |