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 642a73b commit 5e2ea8dCopy full SHA for 5e2ea8d
test/coderbot_test.py
@@ -58,12 +58,12 @@ def test_motor_right(self):
58
self.bot.left(speed=100, elapse=0.1)
59
60
def test_motor_move(self):
61
- self.bot.move(speed=100, elapse=0.1, steps=-1)
62
- 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)
63
64
def test_motor_turn(self):
65
- self.bot.turn(speed=100, elapse=0.1, steps=-1)
66
- 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)
67
68
69
class CoderBotSonarTestCase(unittest.TestCase):
0 commit comments