diff options
Diffstat (limited to 'cli/tests/016_double_await.ts')
-rw-r--r-- | cli/tests/016_double_await.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/016_double_await.ts b/cli/tests/016_double_await.ts index 0f31b3a80..457a53ff3 100644 --- a/cli/tests/016_double_await.ts +++ b/cli/tests/016_double_await.ts @@ -1,6 +1,6 @@ // This is to test if Deno would die at 2nd await // See https://github.com/denoland/deno/issues/919 -(async (): Promise<void> => { +(async () => { const currDirInfo = await Deno.stat("."); const parentDirInfo = await Deno.stat(".."); console.log(currDirInfo.isDirectory); |