diff --git a/mpf/tests/test_Fast.py b/mpf/tests/test_Fast.py index 807a7fcb2..96671f961 100644 --- a/mpf/tests/test_Fast.py +++ b/mpf/tests/test_Fast.py @@ -195,14 +195,14 @@ def test_hw_rule_pulse_inverted_switch(self): def test_servo(self): # go to min position MockSerialCommunicator.expected_commands['NET'] = { - "XO:03,00": False + "XO:03,00": False } self.machine.servos.servo1.go_to_position(0) self.assertFalse(MockSerialCommunicator.expected_commands['NET']) # go to max position MockSerialCommunicator.expected_commands['NET'] = { - "XO:03,FF": False + "XO:03,FF": False } self.machine.servos.servo1.go_to_position(1) self.assertFalse(MockSerialCommunicator.expected_commands['NET'])