diff options
author | Damien George <damien.p.george@gmail.com> | 2018-03-16 18:37:55 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-03-16 18:37:55 +1100 |
commit | 9600a1f207edf90d72b5f7c545172785f3943ff5 (patch) | |
tree | 0e28339922f06e7e880e2b185341f2b3c78d2ce3 | |
parent | b7d576d69a8ef104d4a5538fd09ed97806a15369 (diff) |
tests/pyb: Update CAN test to expect that auto_restart is printed.
-rw-r--r-- | tests/pyb/can.py.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pyb/can.py.exp b/tests/pyb/can.py.exp index e25a0f406..352e5f969 100644 --- a/tests/pyb/can.py.exp +++ b/tests/pyb/can.py.exp @@ -7,14 +7,14 @@ CAN YA CAN YB ValueError YC CAN(1) -CAN(1, CAN.LOOPBACK, extframe=False) +CAN(1, CAN.LOOPBACK, extframe=False, auto_restart=False) False True (123, False, 0, b'abcd') (2047, False, 0, b'abcd') (0, False, 0, b'abcd') passed -CAN(1, CAN.LOOPBACK, extframe=True) +CAN(1, CAN.LOOPBACK, extframe=True, auto_restart=False) passed ('0x8', '0x1c', '0xa', b'ok') ('0x800', '0x1c00', '0xa00', b'ok') |