summaryrefslogtreecommitdiffstatshomepage
path: root/tests/pyb/spi.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pyb/spi.py')
-rw-r--r--tests/pyb/spi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pyb/spi.py b/tests/pyb/spi.py
index 577737420f..73d39e7245 100644
--- a/tests/pyb/spi.py
+++ b/tests/pyb/spi.py
@@ -14,7 +14,7 @@ print(spi)
spi = SPI(1, SPI.MASTER)
spi = SPI(1, SPI.MASTER, baudrate=500000)
spi = SPI(1, SPI.MASTER, 500000, polarity=1, phase=0, bits=8, firstbit=SPI.MSB, ti=False, crc=None)
-print(str(spi)[:28], str(spi)[49:]) # don't print baudrate/prescaler
+print(str(spi)[:28], str(spi)[49:]) # don't print baudrate/prescaler
spi.init(SPI.SLAVE, phase=1)
print(spi)