summaryrefslogtreecommitdiffstatshomepage
path: root/tests/wipy/uart.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wipy/uart.py')
-rw-r--r--tests/wipy/uart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wipy/uart.py b/tests/wipy/uart.py
index a3a1c14e88..8e794015de 100644
--- a/tests/wipy/uart.py
+++ b/tests/wipy/uart.py
@@ -95,7 +95,7 @@ print(uart1.read() == None)
print(uart1.write(b'123') == 3)
print(uart0.read() == b'123')
-# no pin assignemnt
+# no pin assignment
uart0 = UART(0, 1000000, pins=(None, None))
print(uart0.write(b'123456789') == 9)
print(uart1.read() == None)