summaryrefslogtreecommitdiff
path: root/cli/tests/unit/dir_test.ts
diff options
context:
space:
mode:
authorcrowlKats <13135287+crowlKats@users.noreply.github.com>2021-03-17 22:45:12 +0100
committerGitHub <noreply@github.com>2021-03-17 17:45:12 -0400
commit0e70d9e59bc0e70f1921bb217ee00fc2e6facb69 (patch)
treed501399bd07855148ce817c568e7228bdfd87d87 /cli/tests/unit/dir_test.ts
parentb3fe85163f303a1592335b23c25554dd0e39a4c4 (diff)
refactor: clean up permission handling (#9367)
Diffstat (limited to 'cli/tests/unit/dir_test.ts')
-rw-r--r--cli/tests/unit/dir_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/unit/dir_test.ts b/cli/tests/unit/dir_test.ts
index 75a41dd40..e64baf97b 100644
--- a/cli/tests/unit/dir_test.ts
+++ b/cli/tests/unit/dir_test.ts
@@ -44,7 +44,7 @@ unitTest({ perms: { read: false } }, function dirCwdPermError(): void {
Deno.cwd();
},
Deno.errors.PermissionDenied,
- "read access to <CWD>, run again with the --allow-read flag",
+ "Requires read access to <CWD>, run again with the --allow-read flag",
);
});