diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-17 00:14:05 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-17 00:14:05 +0100 |
commit | 7447e80f3d2c05068813f868301255b252cce50e (patch) | |
tree | 44eeda53ca683174c0ee677d61ec64914154e647 /tests/basics/fun-defargs.py | |
parent | 89831d02896372730899d37edc4054fb3424c21b (diff) | |
download | micropython-7447e80f3d2c05068813f868301255b252cce50e.tar.gz micropython-7447e80f3d2c05068813f868301255b252cce50e.zip |
tests: Remove print('flush') from 2 tests, since stmhal now works.
Fixing the USB problem on stmhal now gets these 2 tests working.
Diffstat (limited to 'tests/basics/fun-defargs.py')
-rw-r--r-- | tests/basics/fun-defargs.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/basics/fun-defargs.py b/tests/basics/fun-defargs.py index 51516c7363..0666b8c494 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... |