diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testdata/repl/import_type.ts | 2 | ||||
-rw-r--r-- | tests/testdata/run/import_type.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/testdata/repl/import_type.ts b/tests/testdata/repl/import_type.ts index 851ebad86..0bee21747 100644 --- a/tests/testdata/repl/import_type.ts +++ b/tests/testdata/repl/import_type.ts @@ -1,4 +1,4 @@ -import { type B, create } from "./subdir/export_types.ts"; +import { create, type B } from "./subdir/export_types.ts"; const b: B = create(); diff --git a/tests/testdata/run/import_type.ts b/tests/testdata/run/import_type.ts index 22c639cbc..65e140cda 100644 --- a/tests/testdata/run/import_type.ts +++ b/tests/testdata/run/import_type.ts @@ -1,4 +1,4 @@ -import { type B, create } from "../subdir/export_types.ts"; +import { create, type B } from "../subdir/export_types.ts"; const b: B = create(); |