summaryrefslogtreecommitdiff
path: root/tests/pyb/uart.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2019-12-20 16:42:38 +1100
committerDamien George <damien.p.george@gmail.com>2019-12-20 16:42:38 +1100
commit39bc430e44173430776e7336c9e622d52affe59a (patch)
treeafcc4071422f154a5abe48d614de14f5709b477f /tests/pyb/uart.py
parent073c5f3a40abd4bd7691f5468f0106ed4379ebfb (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.py2
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)