We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd2698c commit bcfd52dCopy full SHA for bcfd52d
tests/GenerateServerTest.php
@@ -29,7 +29,7 @@ function makeFilePath(string $path): string
29
$appRoot = realpath(makeFilePath(__DIR__ . '/../vendor/orchestra/testbench-core/laravel/'));
30
$putFiles = [];
31
$filesystem->shouldReceive('put')->withArgs(function ($path, $content) use (&$putFiles, $appRoot) {
32
- $putFiles[] = str_replace($appRoot, '', $path);
+ $putFiles[] = makeFilePath(str_replace($appRoot, '', $path));
33
34
return true;
35
});
0 commit comments