diff options
| author | Scott Shawcroft <scott.shawcroft@gmail.com> | 2017-02-14 10:57:00 +0100 |
|---|---|---|
| committer | Scott Shawcroft <scott.shawcroft@gmail.com> | 2017-02-14 10:57:00 +0100 |
| commit | b950709beafbfe3a20b95b4cd978fb50db3e8eb8 (patch) | |
| tree | 1afde36f5b50bfffc75503bc72c538f3808b0f53 /tests/basics/sys1.py | |
| parent | 18c299b13dd568669176fb1c713c79dfb4890bbe (diff) | |
Fix tests that rely on sys.implementation.name to work with circutpython response.
Diffstat (limited to 'tests/basics/sys1.py')
| -rw-r--r-- | tests/basics/sys1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/sys1.py b/tests/basics/sys1.py index 816c8823a..702cf1aeb 100644 --- a/tests/basics/sys1.py +++ b/tests/basics/sys1.py @@ -7,7 +7,7 @@ print(type(sys.path)) print(type(sys.argv)) print(sys.byteorder in ('little', 'big')) print(sys.maxsize > 100) -print(sys.implementation.name in ('cpython', 'micropython')) +print(sys.implementation.name in ('cpython', 'micropython', 'circuitpython')) try: sys.exit() |
