monkey_driver: Fix sleep-ms

Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
This commit is contained in:
Daniel Silverstone 2019-08-03 17:28:35 +01:00
parent 1866f3a3d1
commit 84a9c5accf
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ def run_test_step_action_sleep_ms(ctx, step):
start = repeat["start"]
have_repeat = True
else:
sleep = time / 1000
sleep = sleep_time / 1000
start = time.time()
while True: