diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2019-02-12 02:57:26 +0900 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-11 12:57:26 -0500 |
commit | d26655371b796cf5dad762d1b7154c25251cb41d (patch) | |
tree | 756f7710b86d2678fbdc2434ae1630741c19edc6 /tools/unit_tests.py | |
parent | 90c7af27d7959e94a25f635e21b8d77cb347e135 (diff) |
fix: improve formatting (#1732)
Diffstat (limited to 'tools/unit_tests.py')
-rwxr-xr-x | tools/unit_tests.py | 3 |
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"]) |