diff options
author | Lukas Schaefer <lukas@lschaefer.xyz> | 2025-06-25 15:36:47 -0400 |
---|---|---|
committer | Lukas Schaefer <lukas@lschaefer.xyz> | 2025-06-25 15:36:47 -0400 |
commit | 62f21328adb4e73416f1de122cd972faa562b7ce (patch) | |
tree | 556f0470e73170364ffefb1a0d779a1c230030a7 | |
parent | 0f94ceace12e96f2ffffba029cdb3d69dea46e14 (diff) | |
download | nextcloud-server-fix/tests/migrations.tar.gz nextcloud-server-fix/tests/migrations.zip |
fix: no migrations ran when app loaded for testingfix/tests/migrations
Signed-off-by: Lukas Schaefer <lukas@lschaefer.xyz>
-rw-r--r-- | tests/bootstrap.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 8177b580965..cfe3423c297 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -22,6 +22,7 @@ foreach (new \DirectoryIterator(__DIR__ . '/../apps/') as $file) { continue; } \OC_App::loadApp($file->getFilename()); + \OC_App::updateApp($file->getFilename()); } OC_Hook::clear(); |