Skip to content

Commit

Permalink
Lint fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
kategengler committed Jan 12, 2023
1 parent cc1f395 commit 4e64f71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/@ember/error/type-tests/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import EmberError from '@ember/error';
import { expectTypeOf } from 'expect-type';

expectTypeOf(EmberError("Blah")).toEqualTypeOf<Error>();
expectTypeOf(new EmberError("Blah")).toEqualTypeOf<Error>();
expectTypeOf(EmberError('Blah')).toEqualTypeOf<Error>();
expectTypeOf(new EmberError('Blah')).toEqualTypeOf<Error>();

0 comments on commit 4e64f71

Please sign in to comment.