diff options
Diffstat (limited to 'js/timers_test.ts')
-rw-r--r-- | js/timers_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/timers_test.ts b/js/timers_test.ts index 8d9eb0e1a..56cc56a9b 100644 --- a/js/timers_test.ts +++ b/js/timers_test.ts @@ -32,7 +32,7 @@ test(async function timeoutSuccess() { }); test(async function timeoutArgs() { - let arg = 1; + const arg = 1; await new Promise((resolve, reject) => { setTimeout( (a, b, c) => { |