Skip to content

Commit acf9411

Browse files
committed
Fix without laravel tests condition
1 parent 22b1418 commit acf9411

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/check.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ jobs:
4343
run: "composer update --no-interaction --no-progress"
4444

4545
- name: "Remove Laravel"
46-
if: ${{ matrix.dependencies == 'highest' }}
4746
run: "composer remove --dev laravel/framework"
4847

4948
- name: "Tests"

tests/GetValueFactoryTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function testArray(): void
6060
public function testRequestAll(): void
6161
{
6262
if (class_exists(Request::class) === false) {
63-
$this->markTestSkipped('Laravel is not installed');
63+
$this->markTestSkipped('Laravel not installed.');
6464
}
6565

6666
$getValue = $this->factory->requestAll(new Request([
@@ -75,7 +75,7 @@ public function testRequestAll(): void
7575
public function testRequestValidated(): void
7676
{
7777
if (class_exists(Request::class) === false) {
78-
$this->markTestSkipped('Laravel is not installed');
78+
$this->markTestSkipped('Laravel not installed.');
7979
}
8080

8181
$getValue = $this->factory->request($this->getFormRequest());
@@ -87,7 +87,7 @@ public function testRequestValidated(): void
8787
public function testRequestAllWithFormRequest(): void
8888
{
8989
if (class_exists(Request::class) === false) {
90-
$this->markTestSkipped('Laravel is not installed');
90+
$this->markTestSkipped('Laravel not installed.');
9191
}
9292

9393
$request = $this->getFormRequest();

0 commit comments

Comments
 (0)