From d5f111d51281e4aeb58cd9f57b4baf39b9ecdc2a Mon Sep 17 00:00:00 2001 From: Damjan Cvetko Date: Mon, 23 Dec 2024 00:05:30 +0100 Subject: [PATCH] fix: Path::canonicalize all test workspace paths As part of port-to-windows effort, normalize paths used by tests. --- lib/Workspace.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Workspace.php b/lib/Workspace.php index 1d89e306..5d0e6fe2 100644 --- a/lib/Workspace.php +++ b/lib/Workspace.php @@ -18,7 +18,7 @@ class Workspace public function __construct(string $path) { - $this->path = $path; + $this->path = Path::canonicalize($path); } public static function create(string $path): self