Skip to content

Commit

Permalink
Use explicit relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
anba committed Jul 10, 2024
1 parent 08e1aa8 commit ab55350
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/staging/top-level-await/grandparent-tla_FIXTURE.js
Original file line number Diff line number Diff line change
@@ -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";
2 changes: 1 addition & 1 deletion test/staging/top-level-await/parent-tla_FIXTURE.js
Original file line number Diff line number Diff line change
@@ -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"
4 changes: 2 additions & 2 deletions test/staging/top-level-await/tla-hang-entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();

0 comments on commit ab55350

Please sign in to comment.