aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2025-04-30 08:58:30 +0200
committerJoas Schilling <coding@schilljs.com>2025-04-30 08:58:30 +0200
commitc6a7cae875cf6b4f19da2c5cfd1c448eb9cfd6f6 (patch)
treea78e06e1835ebbc0a1ea1f8561ff271ab8c23b64
parent8476d92ef1d78faf5381096495a6a61f12158fe9 (diff)
downloadnextcloud-server-techdebt/noid/more-phpunit-10-preparations.tar.gz
nextcloud-server-techdebt/noid/more-phpunit-10-preparations.zip
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--tests/lib/DB/MigrationsTest.php8
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'],