diff options
Diffstat (limited to 'tests/extmod/framebuf16.py')
| -rw-r--r-- | tests/extmod/framebuf16.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/extmod/framebuf16.py b/tests/extmod/framebuf16.py index cd7f5ec01..9f373c331 100644 --- a/tests/extmod/framebuf16.py +++ b/tests/extmod/framebuf16.py @@ -1,11 +1,11 @@ try: - import framebuf, usys + import framebuf, sys except ImportError: print("SKIP") raise SystemExit # This test and its .exp file is based on a little-endian architecture. -if usys.byteorder != "little": +if sys.byteorder != "little": print("SKIP") raise SystemExit |
