diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-07-14 15:24:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 15:24:17 -0400 |
commit | cde4dbb35132848ffece59ef9cfaccff32347124 (patch) | |
tree | cc7830968c6decde704c8cfb83c9185193dc698f /cli/tests/unit/make_temp_test.ts | |
parent | 9eca71caa1674c31f9cc5d4e86c03f10b59e0a00 (diff) |
Use dprint for internal formatting (#6682)
Diffstat (limited to 'cli/tests/unit/make_temp_test.ts')
-rw-r--r-- | cli/tests/unit/make_temp_test.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cli/tests/unit/make_temp_test.ts b/cli/tests/unit/make_temp_test.ts index c1498aa64..05a422cfd 100644 --- a/cli/tests/unit/make_temp_test.ts +++ b/cli/tests/unit/make_temp_test.ts @@ -36,7 +36,7 @@ unitTest( if (Deno.build.os !== "windows") { assertEquals(pathInfo.mode! & 0o777, 0o700 & ~Deno.umask()); } - } + }, ); unitTest(function makeTempDirSyncPerm(): void { @@ -67,7 +67,7 @@ unitTest( await assertThrowsAsync(async () => { await Deno.makeTempDir({ dir: "/baddir" }); }, Deno.errors.NotFound); - } + }, ); unitTest( @@ -78,7 +78,7 @@ unitTest( if (Deno.build.os !== "windows") { assertEquals(pathInfo.mode! & 0o777, 0o700 & ~Deno.umask()); } - } + }, ); unitTest({ perms: { write: true } }, function makeTempFileSyncSuccess(): void { @@ -111,7 +111,7 @@ unitTest( if (Deno.build.os !== "windows") { assertEquals(pathInfo.mode! & 0o777, 0o600 & ~Deno.umask()); } - } + }, ); unitTest(function makeTempFileSyncPerm(): void { @@ -143,7 +143,7 @@ unitTest( await assertThrowsAsync(async () => { await Deno.makeTempFile({ dir: "/baddir" }); }, Deno.errors.NotFound); - } + }, ); unitTest( @@ -154,5 +154,5 @@ unitTest( if (Deno.build.os !== "windows") { assertEquals(pathInfo.mode! & 0o777, 0o600 & ~Deno.umask()); } - } + }, ); |