Fix module specifiers

These should be relative paths, starting with "./". Bare specifiers are
not allowed in test262.
This commit is contained in:
Philip Chimento 2025-10-13 12:09:49 -07:00 committed by Ms2ger
parent 42303c7c2b
commit a6f910b8ab
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
// Copyright (C) 2024 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
import "parent-tla_FIXTURE.js";
import "./parent-tla_FIXTURE.js";

View File

@ -1,4 +1,4 @@
// Copyright (C) 2024 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
import "tla_FIXTURE.js"
import "./tla_FIXTURE.js"

View File

@ -7,7 +7,7 @@ flags: [module, async]
features: [top-level-await]
---*/
import "parent-tla_FIXTURE.js";
await import("grandparent-tla_FIXTURE.js");
import "./parent-tla_FIXTURE.js";
await import("./grandparent-tla_FIXTURE.js");
$DONE();