Skip to content

Commit 2b7ff3a

Browse files
authored
fix: Path::canonicalize all test workspace paths (#13)
As part of port-to-windows effort, normalize paths used by tests.
1 parent 5655428 commit 2b7ff3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Workspace.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Workspace
1818

1919
public function __construct(string $path)
2020
{
21-
$this->path = $path;
21+
$this->path = Path::canonicalize($path);
2222
}
2323

2424
public static function create(string $path): self

0 commit comments

Comments
 (0)