summaryrefslogtreecommitdiff
path: root/tests/pyb/uart.py
diff options
context:
space:
mode:
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)