summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-17 00:14:05 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-17 00:14:05 +0100
commit7447e80f3d2c05068813f868301255b252cce50e (patch)
tree44eeda53ca683174c0ee677d61ec64914154e647
parent89831d02896372730899d37edc4054fb3424c21b (diff)
tests: Remove print('flush') from 2 tests, since stmhal now works.
Fixing the USB problem on stmhal now gets these 2 tests working.
-rw-r--r--tests/basics/fun-callstar.py2
-rw-r--r--tests/basics/fun-defargs.py2
2 files changed, 0 insertions, 4 deletions
diff --git a/tests/basics/fun-callstar.py b/tests/basics/fun-callstar.py
index e19acb349..255563b26 100644
--- a/tests/basics/fun-callstar.py
+++ b/tests/basics/fun-callstar.py
@@ -31,5 +31,3 @@ a.foo(1, 2, *[100])
# Iterator
a.foo(*range(3))
-
-print('flush') # so that it works on pyboard...
diff --git a/tests/basics/fun-defargs.py b/tests/basics/fun-defargs.py
index 51516c736..0666b8c49 100644
--- a/tests/basics/fun-defargs.py
+++ b/tests/basics/fun-defargs.py
@@ -18,5 +18,3 @@ try:
fun2(1, 2, 3, 4)
except TypeError:
print("TypeError")
-
-print('flush') # so that it works on pyboard...