1
0
Fork 0
mirror of synced 2024-10-02 02:07:04 +13:00

Linter fix

This commit is contained in:
Matej Bačo 2022-09-01 05:26:49 +00:00
parent 2386381d03
commit ebdef8afa7

View file

@ -43,7 +43,7 @@ abstract class MigrationTest extends TestCase
} }
// Test if current version exists // Test if current version exists
// Only test official releases - skip if latest is release candidate // Only test official releases - skip if latest is release candidate
if(!(\str_contains(APP_VERSION_STABLE, 'RC'))) { if (!(\str_contains(APP_VERSION_STABLE, 'RC'))) {
$this->assertArrayHasKey(APP_VERSION_STABLE, Migration::$versions); $this->assertArrayHasKey(APP_VERSION_STABLE, Migration::$versions);
} }
} }