Skip to content

Commit a6f910b

Browse files
ptomatoMs2ger
authored andcommitted
Fix module specifiers
These should be relative paths, starting with "./". Bare specifiers are not allowed in test262.
1 parent 42303c7 commit a6f910b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Copyright (C) 2024 the V8 project authors. All rights reserved.
22
// This code is governed by the BSD license found in the LICENSE file.
33

4-
import "parent-tla_FIXTURE.js";
4+
import "./parent-tla_FIXTURE.js";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Copyright (C) 2024 the V8 project authors. All rights reserved.
22
// This code is governed by the BSD license found in the LICENSE file.
33

4-
import "tla_FIXTURE.js"
4+
import "./tla_FIXTURE.js"

test/staging/top-level-await/tla-hang-entry.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ flags: [module, async]
77
features: [top-level-await]
88
---*/
99

10-
import "parent-tla_FIXTURE.js";
11-
await import("grandparent-tla_FIXTURE.js");
10+
import "./parent-tla_FIXTURE.js";
11+
await import("./grandparent-tla_FIXTURE.js");
1212

1313
$DONE();

0 commit comments

Comments
 (0)