diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 9293596..bf7485a 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -43,7 +43,6 @@ jobs: run: "composer update --no-interaction --no-progress" - name: "Remove Laravel" - if: ${{ matrix.dependencies == 'highest' }} run: "composer remove --dev laravel/framework" - name: "Tests" diff --git a/tests/GetValueFactoryTest.php b/tests/GetValueFactoryTest.php index ee4e53c..3967415 100644 --- a/tests/GetValueFactoryTest.php +++ b/tests/GetValueFactoryTest.php @@ -60,7 +60,7 @@ public function testArray(): void public function testRequestAll(): void { if (class_exists(Request::class) === false) { - $this->markTestSkipped('Laravel is not installed'); + $this->markTestSkipped('Laravel not installed.'); } $getValue = $this->factory->requestAll(new Request([ @@ -75,7 +75,7 @@ public function testRequestAll(): void public function testRequestValidated(): void { if (class_exists(Request::class) === false) { - $this->markTestSkipped('Laravel is not installed'); + $this->markTestSkipped('Laravel not installed.'); } $getValue = $this->factory->request($this->getFormRequest()); @@ -87,7 +87,7 @@ public function testRequestValidated(): void public function testRequestAllWithFormRequest(): void { if (class_exists(Request::class) === false) { - $this->markTestSkipped('Laravel is not installed'); + $this->markTestSkipped('Laravel not installed.'); } $request = $this->getFormRequest();