From 7447e80f3d2c05068813f868301255b252cce50e Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 17 Apr 2014 00:14:05 +0100 Subject: [PATCH] tests: Remove print('flush') from 2 tests, since stmhal now works. Fixing the USB problem on stmhal now gets these 2 tests working. --- tests/basics/fun-callstar.py | 2 -- tests/basics/fun-defargs.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/tests/basics/fun-callstar.py b/tests/basics/fun-callstar.py index e19acb3491..255563b26b 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 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...