summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/monkey_driver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/monkey_driver.py b/test/monkey_driver.py
index a0f4f368f..7a2871dbf 100755
--- a/test/monkey_driver.py
+++ b/test/monkey_driver.py
@@ -333,7 +333,7 @@ def run_test_step_action_reload(ctx, step):
def run_test_step_action_sleep_ms(ctx, step):
print(get_indent(ctx) + "Action: " + step["action"])
- conds = step['conditions']
+ conds = step.get('conditions', {})
sleep_time = step['time']
sleep = 0
have_repeat = False