Fix import assertions tests

- Correct file paths in "ensure-linking-error_FIXTURE.js"
- Remove no longer valid assertion in "import-assertion-empty.js".

See also #3919.
This commit is contained in:
André Bargull 2023-09-25 08:28:23 +02:00 committed by Philip Chimento
parent 16fc2e5e18
commit 989377d62d
2 changed files with 1 additions and 2 deletions

View File

@ -6,4 +6,4 @@
// It can be used to assert that there is a linking error, which means
// that there are no parsing errors.
import { nonExistent } from "./import-assertion-ensure-resolution-error_FIXTURE.js";
import { nonExistent } from "./ensure-linking-error_FIXTURE.js";

View File

@ -27,4 +27,3 @@ import './import-assertion-2_FIXTURE.js' assert {};
export * from './import-assertion-3_FIXTURE.js' assert {};
assert.sameValue(x, 262.1);
assert.sameValue(globalThis.test262, 262.2);