diff options
-rw-r--r-- | tests/lib/DB/MigrationsTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/DB/MigrationsTest.php b/tests/lib/DB/MigrationsTest.php index a5d88b1b38d..57ffb91e37e 100644 --- a/tests/lib/DB/MigrationsTest.php +++ b/tests/lib/DB/MigrationsTest.php @@ -216,12 +216,12 @@ class MigrationsTest extends \Test\TestCase { ->getMock(); $this->migrationService->method('getMigratedVersions') ->willReturn( - ['20170130180000', '20170130180001'] - ); + ['20170130180000', '20170130180001'] + ); $this->migrationService->method('findMigrations') ->willReturn( - ['20170130180000' => 'X', '20170130180001' => 'Y', '20170130180002' => 'Z', '20170130180003' => 'A'] - ); + ['20170130180000' => 'X', '20170130180001' => 'Y', '20170130180002' => 'Z', '20170130180003' => 'A'] + ); $this->assertEquals( ['20170130180000', '20170130180001', '20170130180002', '20170130180003'], |