Skip to content

Commit

Permalink
CS fixy
Browse files Browse the repository at this point in the history
  • Loading branch information
jabdoa2 committed May 17, 2016
1 parent d2c9fb1 commit 826b515
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mpf/tests/test_Fast.py
Expand Up @@ -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'])
Expand Down

0 comments on commit 826b515

Please sign in to comment.