diff options
Diffstat (limited to 'cli/tests/034_onload/nest_imported.ts')
-rw-r--r-- | cli/tests/034_onload/nest_imported.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/034_onload/nest_imported.ts b/cli/tests/034_onload/nest_imported.ts index d43b8ebe7..8ca668de9 100644 --- a/cli/tests/034_onload/nest_imported.ts +++ b/cli/tests/034_onload/nest_imported.ts @@ -1,6 +1,6 @@ import { assert } from "../../../test_util/std/testing/asserts.ts"; -const handler = (e: Event): void => { +const handler = (e: Event) => { assert(!e.cancelable); console.log(`got ${e.type} event in event handler (nest_imported)`); }; |