Skip to content

Commit c3ebc5b

Browse files
committed
fix
1 parent 7d46e94 commit c3ebc5b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/Command/Serve/NonExistsCurrentDirectory/NonExistsCurrentDirectoryServeTest.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,16 @@
1010

1111
final class NonExistsCurrentDirectoryServeTest extends TestCase
1212
{
13+
/**
14+
* @requires OS Linux
15+
*/
1316
public function testBase(): void
1417
{
1518
$command = $this->application()->find('serve');
1619

1720
$commandCreate = new CommandTester($command);
1821

19-
$directory = __DIR__ . DIRECTORY_SEPARATOR . 'test-dir';
22+
$directory = __DIR__ . '/test-dir';
2023
if (!file_exists($directory)) {
2124
mkdir($directory);
2225
}

0 commit comments

Comments
 (0)