diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-12-16 17:20:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-16 17:20:40 +0100 |
commit | 4f2923862ad7d499684571ded196f2d2fc85344a (patch) | |
tree | 8e7b729f5b25e5fd6c1cefb991c678a5d59b12ea /apps/encryption/tests | |
parent | 7adfdf5248745b393e98ebfba0bdce6c2f0bfd84 (diff) | |
parent | 2399710356456ca7758b9ab3b7469cc67f21984e (diff) | |
download | nextcloud-server-4f2923862ad7d499684571ded196f2d2fc85344a.tar.gz nextcloud-server-4f2923862ad7d499684571ded196f2d2fc85344a.zip |
Merge pull request #35108 from nextcloud/encryption-fix-versions-all
allow running encryption:fix-encrypted-version for all users
Diffstat (limited to 'apps/encryption/tests')
-rw-r--r-- | apps/encryption/tests/Command/FixEncryptedVersionTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/encryption/tests/Command/FixEncryptedVersionTest.php b/apps/encryption/tests/Command/FixEncryptedVersionTest.php index ee9ad1ac89f..5c938b4350d 100644 --- a/apps/encryption/tests/Command/FixEncryptedVersionTest.php +++ b/apps/encryption/tests/Command/FixEncryptedVersionTest.php @@ -344,7 +344,7 @@ The file \"/$this->userId/files/sub/hello.txt\" is: OK", $output); $output = $this->commandTester->getDisplay(); - $this->assertStringContainsString('No user id provided', $output); + $this->assertStringContainsString('Either a user id or --all needs to be provided', $output); } public function testExecuteWithBadUser() { |