diff options
Diffstat (limited to 'cli/tests/unit/umask_test.ts')
-rw-r--r-- | cli/tests/unit/umask_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/unit/umask_test.ts b/cli/tests/unit/umask_test.ts index aa10b15eb..579208ee0 100644 --- a/cli/tests/unit/umask_test.ts +++ b/cli/tests/unit/umask_test.ts @@ -5,7 +5,7 @@ unitTest( { ignore: Deno.build.os === "windows", }, - function umaskSuccess(): void { + function umaskSuccess() { const prevMask = Deno.umask(0o020); const newMask = Deno.umask(prevMask); const finalMask = Deno.umask(); |