Skip to content

Commit bea4d6d

Browse files
committed
fix(phpstan): accidentally added test skip twice
1 parent 22f3c0f commit bea4d6d

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

tests/Migration/IndexOptionsTest.php

-8
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,6 @@ public function testFulltextWeightByColumn(): void
8787
$this->markTestSkipped('Fulltext indexes have been added in a later Laraverl version.');
8888
}
8989

90-
if (version_compare($this->app->version(), '8.74.0', '<')) {
91-
$this->markTestSkipped('Fulltext indexes have been added in a later Laraverl version.');
92-
}
93-
9490
Schema::create('test_517379', function (Blueprint $table): void {
9591
$table->string('col_383934');
9692
$table->string('col_996362');
@@ -109,10 +105,6 @@ public function testFulltextWeightByName(): void
109105
$this->markTestSkipped('Fulltext indexes have been added in a later Laraverl version.');
110106
}
111107

112-
if (version_compare($this->app->version(), '8.74.0', '<')) {
113-
$this->markTestSkipped('Fulltext indexes have been added in a later Laraverl version.');
114-
}
115-
116108
Schema::create('test_460239', function (Blueprint $table): void {
117109
$table->string('col_705289');
118110
$table->string('col_996385');

0 commit comments

Comments
 (0)