From 580ed56ad97d87b47002d046bfb97e2cd049dd71 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 18 Jan 2023 18:15:20 +1100 Subject: [PATCH] Fixes for test --- tests/TestCase.php | 1 + tests/ci | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index 2932d4a69d65..5ed8540a6f36 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -7,4 +7,5 @@ use Illuminate\Foundation\Testing\TestCase as BaseTestCase; abstract class TestCase extends BaseTestCase { use CreatesApplication; + } diff --git a/tests/ci b/tests/ci index f24c17bcd72d..e727732da7f9 100755 --- a/tests/ci +++ b/tests/ci @@ -13,7 +13,7 @@ require_once 'vendor/autoload.php'; * - Tests\Support\UuidTest::it_can_not_create_a_uuid_from_null * - ... */ -$process = new \Symfony\Component\Process\Process([__DIR__ . '/vendor/bin/phpunit', '--list-tests']); +$process = new \Symfony\Component\Process\Process(['./vendor/bin/phpunit', '--list-tests']); $process->mustRun(); $tests = \Illuminate\Support\Str::of($process->getOutput())