Skip to content

Commit

Permalink
this is not c
Browse files Browse the repository at this point in the history
  • Loading branch information
maxime-desroches committed Oct 1, 2024
1 parent 13e3443 commit 22af923
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/safety/test_honda.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,16 +456,16 @@ def test_supplemental_control_check(self):
self.assertTrue(self._tx(msg))

msg = self._bosh_supplemental_cmd_msg()
msg[0].data[0] = 42;
msg[0].data[0] = 42
self.assertFalse(self._tx(msg))

msg = self._bosh_supplemental_cmd_msg()
msg[0].data[4] = 42;
msg[0].data[4] = 42
self.assertFalse(self._tx(msg))

msg = self._bosh_supplemental_cmd_msg()
msg[0].data[4] = 0;
msg[0].data[7] = 42;
msg[0].data[4] = 0
msg[0].data[7] = 42
self.assertTrue(self._tx(msg))


Expand Down

0 comments on commit 22af923

Please sign in to comment.