We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c4621c commit 4254aeaCopy full SHA for 4254aea
test/TestScheduler.py
@@ -143,7 +143,7 @@ def testSensorCoroutinesCanBeAccessedAndGetDoneFirst(self):
143
motorCo = TestScheduler.dummyCoroutine(2)
144
motorCoReturned = self.scheduler.addActionCoroutine(motorCo)
145
sensorCoReturned = self.scheduler.addSensorCoroutine(sensorCo)
146
- # Then the 'latest coroutine' of each time will be returned correctly:
+ # Then the 'latest coroutine' will be returned correctly:
147
self.assertEquals( motorCoReturned, motorCo )
148
self.assertEquals( sensorCoReturned, sensorCo )
149
# and the motor coroutine will update the status last:
0 commit comments