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