diff options
author | Damien George <damien.p.george@gmail.com> | 2019-12-20 16:42:38 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-12-20 16:42:38 +1100 |
commit | 39bc430e44173430776e7336c9e622d52affe59a (patch) | |
tree | afcc4071422f154a5abe48d614de14f5709b477f /tests/pyb/uart.py | |
parent | 073c5f3a40abd4bd7691f5468f0106ed4379ebfb (diff) |
tests/pyb: Adjust UART and Timer tests to work on PYBD_SF6.
Diffstat (limited to 'tests/pyb/uart.py')
-rw-r--r-- | tests/pyb/uart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pyb/uart.py b/tests/pyb/uart.py index 82a66dd2e..9dcb1f75c 100644 --- a/tests/pyb/uart.py +++ b/tests/pyb/uart.py @@ -1,7 +1,7 @@ from pyb import UART # test we can correctly create by id -for bus in (-1, 0, 1, 2, 5, 6, 7): +for bus in (-1, 0, 1, 2, 5, 6): try: UART(bus, 9600) print("UART", bus) |