summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2023-06-17 11:20:52 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2023-06-17 11:20:52 +0100
commit23102ff60157c85ff283f80e456bb124e74a4596 (patch)
tree1b259a6a6df254cf6aba213ac8a24cc753af3578
parentc987b043b1fb4c5a25594e822c16787906b09fc8 (diff)
downloadnetsurf-23102ff60157c85ff283f80e456bb124e74a4596.tar.gz
netsurf-23102ff60157c85ff283f80e456bb124e74a4596.tar.bz2
test: Use YAML SafeLoader
-rwxr-xr-xtest/monkey-see-monkey-do2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/monkey-see-monkey-do b/test/monkey-see-monkey-do
index 431731511..72b8685ec 100755
--- a/test/monkey-see-monkey-do
+++ b/test/monkey-see-monkey-do
@@ -117,7 +117,7 @@ def main():
index = index.read()
print("Parsing tests...")
- test_set = yaml.load_all(index, Loader=yaml.FullLoader)
+ test_set = yaml.load_all(index, Loader=yaml.SafeLoader)
print("Running tests...")
ret = 0