summaryrefslogtreecommitdiff
path: root/tools/unit_tests.py
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2019-02-12 02:57:26 +0900
committerRyan Dahl <ry@tinyclouds.org>2019-02-11 12:57:26 -0500
commitd26655371b796cf5dad762d1b7154c25251cb41d (patch)
tree756f7710b86d2678fbdc2434ae1630741c19edc6 /tools/unit_tests.py
parent90c7af27d7959e94a25f635e21b8d77cb347e135 (diff)
fix: improve formatting (#1732)
Diffstat (limited to 'tools/unit_tests.py')
-rwxr-xr-xtools/unit_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/unit_tests.py b/tools/unit_tests.py
index 542db4642..32e100b8b 100755
--- a/tools/unit_tests.py
+++ b/tools/unit_tests.py
@@ -46,7 +46,8 @@ def unit_tests(deno_exe):
run_unit_test(deno_exe, "permR0W0N0E0U0")
run_unit_test(deno_exe, "permR1W0N0E0U0", ["--allow-read"])
run_unit_test(deno_exe, "permR0W1N0E0U0", ["--allow-write"])
- run_unit_test(deno_exe, "permR1W1N0E0U0", ["--allow-read", "--allow-write"])
+ run_unit_test(deno_exe, "permR1W1N0E0U0",
+ ["--allow-read", "--allow-write"])
run_unit_test(deno_exe, "permR1W0N1E0U0", ["--allow-read", "--allow-net"])
run_unit_test(deno_exe, "permR0W0N0E1U0", ["--allow-env"])
run_unit_test(deno_exe, "permR0W0N0E0U1", ["--allow-run"])