diff options
author | Robin Appelman <robin@icewind.nl> | 2024-07-16 17:48:03 +0200 |
---|---|---|
committer | Louis Chemineau <louis@chmn.me> | 2024-08-28 10:21:19 +0200 |
commit | ddbeb4cac95aa6dff382a276cc847002f16b7278 (patch) | |
tree | 5f97293407b087df5ab4c0ba04ab6417ec1dc921 /apps | |
parent | 62f8b6517f4492b220ebd9df415f2b134735768b (diff) | |
download | nextcloud-server-ddbeb4cac95aa6dff382a276cc847002f16b7278.tar.gz nextcloud-server-ddbeb4cac95aa6dff382a276cc847002f16b7278.zip |
test: mark share test cleanup as running across all shards
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/tests/TestCase.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/tests/TestCase.php b/apps/files_sharing/tests/TestCase.php index a1c4710e30e..4545e67be32 100644 --- a/apps/files_sharing/tests/TestCase.php +++ b/apps/files_sharing/tests/TestCase.php @@ -118,7 +118,7 @@ abstract class TestCase extends \Test\TestCase { $qb->execute(); $qb = \OC::$server->getDatabaseConnection()->getQueryBuilder(); - $qb->delete('filecache'); + $qb->delete('filecache')->runAcrossAllShards(); $qb->execute(); parent::tearDown(); |