From 3e7e0cfd7b95b9b5b26521f80490d63762bd3ee0 Mon Sep 17 00:00:00 2001 From: Kev Date: Sat, 21 Sep 2024 13:31:30 +0200 Subject: [PATCH] Fix double slashes in phpunit path --- src/Test/MakerTestRunner.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Test/MakerTestRunner.php b/src/Test/MakerTestRunner.php index 0eb07a3e0..043be0ee3 100644 --- a/src/Test/MakerTestRunner.php +++ b/src/Test/MakerTestRunner.php @@ -198,7 +198,7 @@ public function updateSchema(): void public function runTests(): void { $internalTestProcess = MakerTestProcess::create( - \sprintf('php %s', $this->getPath('/bin/phpunit')), + \sprintf('php %s', $this->getPath('bin/phpunit')), $this->environment->getPath()) ->run(true) ;