diff options
Diffstat (limited to 'cli/tests/018_async_catch.ts')
-rw-r--r-- | cli/tests/018_async_catch.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/018_async_catch.ts b/cli/tests/018_async_catch.ts index a16f11696..85423ceda 100644 --- a/cli/tests/018_async_catch.ts +++ b/cli/tests/018_async_catch.ts @@ -6,7 +6,7 @@ async function call(): Promise<void> { console.log("before await fn()"); await fn(); console.log("after await fn()"); - } catch (error) { + } catch (_error) { console.log("catch"); } console.log("after try-catch"); |