Skip to content

Commit

Permalink
Fixed typo in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
timocov committed Apr 26, 2022
1 parent 9676b66 commit 6ee68e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/test-cases/rename-imports/input.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { InterfaceWithFields as FakePacakgeInterface } from 'fake-package';
import { InterfaceWithFields as FakePackageInterface } from 'fake-package';

export const myVar: FakePacakgeInterface = {
export const myVar: FakePackageInterface = {
field: 2,
field2: {},
};
4 changes: 2 additions & 2 deletions tests/e2e/test-cases/rename-imports/output.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { InterfaceWithFields as FakePacakgeInterface } from 'fake-package';
import { InterfaceWithFields as FakePackageInterface } from 'fake-package';

export declare const myVar: FakePacakgeInterface;
export declare const myVar: FakePackageInterface;

export {};

0 comments on commit 6ee68e0

Please sign in to comment.