We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e2ea8d commit f34747fCopy full SHA for f34747f
test/coderbot_test.py
@@ -32,12 +32,12 @@ def test_motor_right(self):
32
self.bot.left(speed=100, elapse=0.1)
33
34
def test_motor_move(self):
35
- self.bot.move(speed=100, elapse=0.1, steps=-1)
36
- self.bot.move(speed=-100, elapse=0.1, steps=-1)
+ self.bot.move(speed=100, elapse=0.1)
+ self.bot.move(speed=-100, elapse=0.1)
37
38
def test_motor_turn(self):
39
- self.bot.turn(speed=100, elapse=0.1, steps=-1)
40
- self.bot.turn(speed=-100, elapse=0.1, steps=-1)
+ self.bot.turn(speed=100, elapse=0.1)
+ self.bot.turn(speed=-100, elapse=0.1)
41
42
class CoderBotServoMotorTestCase(unittest.TestCase):
43
def setUp(self):
0 commit comments