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 7f8a430c0..a442f4ecd 100755
--- a/test/monkey_driver.py
+++ b/test/monkey_driver.py
@@ -174,7 +174,7 @@ def load_test_plan(path):
plan = []
with open(path, 'r') as stream:
try:
- plan = (yaml.load(stream))
+ plan = (yaml.load(stream, Loader=yaml.CSafeLoader))
except Exception as exc:
print(exc)
return plan