summaryrefslogtreecommitdiff
path: root/tests/testdata/import_attributes/static_import.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/import_attributes/static_import.ts')
-rw-r--r--tests/testdata/import_attributes/static_import.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/testdata/import_attributes/static_import.ts b/tests/testdata/import_attributes/static_import.ts
index 1538a4a2f..f585b893f 100644
--- a/tests/testdata/import_attributes/static_import.ts
+++ b/tests/testdata/import_attributes/static_import.ts
@@ -1,6 +1,5 @@
import data1 from "./data.json" with { type: "json" };
-// deno-lint-ignore no-import-assertions
-import data2 from "./data.json" assert { type: "json" };
+import data2 from "./data.json" with { type: "json" };
console.log(data1);
console.log(data2);