diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-13 17:46:30 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-13 17:46:30 +0100 |
commit | 4417478d0fc39b69fda058e93730b3dc3fdb1ec9 (patch) | |
tree | 1f97730d4d91cb4480507ed4b75de1d00909950d /tests/basics/fun-callstar.py | |
parent | 9dcc60d0b1241c2b6c2de7a8ca7b712655d05114 (diff) | |
download | micropython-4417478d0fc39b69fda058e93730b3dc3fdb1ec9.tar.gz micropython-4417478d0fc39b69fda058e93730b3dc3fdb1ec9.zip |
tests: Make tests pass on pyboard.
Diffstat (limited to 'tests/basics/fun-callstar.py')
-rw-r--r-- | tests/basics/fun-callstar.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/basics/fun-callstar.py b/tests/basics/fun-callstar.py index 255563b26b..e19acb3491 100644 --- a/tests/basics/fun-callstar.py +++ b/tests/basics/fun-callstar.py @@ -31,3 +31,5 @@ a.foo(1, 2, *[100]) # Iterator a.foo(*range(3)) + +print('flush') # so that it works on pyboard... |