diff --git a/packages/runtime-core/__tests__/helpers/toHandlers.spec.ts b/packages/runtime-core/__tests__/helpers/toHandlers.spec.ts index a71ef389..e07cf141 100644 --- a/packages/runtime-core/__tests__/helpers/toHandlers.spec.ts +++ b/packages/runtime-core/__tests__/helpers/toHandlers.spec.ts @@ -5,8 +5,8 @@ describe('toHandlers', () => { mockWarn() it('should not accept non-objects', () => { - toHandlers((null as unknown) as any) - toHandlers((undefined as unknown) as any) + toHandlers(null as any) + toHandlers(undefined as any) expect( 'v-on with no argument expects an object value.'