diff options
author | Jonathon Orsi <jonathon.orsi@gmail.com> | 2019-04-20 15:12:00 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-04-20 15:12:00 -0400 |
commit | 648d2f3ba8e4677ce2e9440e05a165927e982f05 (patch) | |
tree | de1332c23a34abd3c31550f36fe8312d240d631f /tools | |
parent | 8dc8f227603831513b2d4afc62261908665e6a2f (diff) |
fix typo in permissions explanation (#2162)
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/unit_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/unit_tests.py b/tools/unit_tests.py index 21fea3231..9b0ad98ce 100755 --- a/tools/unit_tests.py +++ b/tools/unit_tests.py @@ -42,7 +42,7 @@ def run_unit_test(deno_exe, permStr, flags=None): # the permissions set. These tests can specify which permissions they expect, # which appends a special string like "permW1N0" to the end of the test name. # Here we run several copies of deno with different permissions, filtering the -# tests by the special string. permW0N0 means allow-write but not allow-net. +# tests by the special string. permW1N0 means allow-write but not allow-net. # See js/test_util.ts for more details. def unit_tests(deno_exe): run_unit_test(deno_exe, "permR0W0N0E0U0H0", ["--reload"]) |