Skip to content

Commit bcfd52d

Browse files
committed
#85995 fix windows test
1 parent dd2698c commit bcfd52d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/GenerateServerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function makeFilePath(string $path): string
2929
$appRoot = realpath(makeFilePath(__DIR__ . '/../vendor/orchestra/testbench-core/laravel/'));
3030
$putFiles = [];
3131
$filesystem->shouldReceive('put')->withArgs(function ($path, $content) use (&$putFiles, $appRoot) {
32-
$putFiles[] = str_replace($appRoot, '', $path);
32+
$putFiles[] = makeFilePath(str_replace($appRoot, '', $path));
3333

3434
return true;
3535
});

0 commit comments

Comments
 (0)