Skip to content

Commit 89d5708

Browse files
committed
trying to fix windows tests with long paths that cause errors :/
1 parent fd088ac commit 89d5708

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/Test/MakerTestDetails.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,7 @@ public function getUniqueCacheDirectoryName(): string
179179
{
180180
// for cache purposes, only the dependencies are important
181181
// shortened to avoid long paths on Windows
182-
$dirName = 'maker_'.substr(md5(serialize($this->getDependencies())), 0, 10);
183-
184-
return $dirName;
182+
return 'maker_'.substr(md5(serialize($this->getDependencies())), 0, 10);
185183
}
186184

187185
public function getPreMakeCommands(): array

0 commit comments

Comments
 (0)