Merge pull request #27243 from nextcloud/fix-tests-on-master

Fix test on master
This commit is contained in:
Lukas Reschke 2021-05-29 00:36:19 +02:00 committed by GitHub
commit 948bbe8b2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ class ApiControllerTest extends TestCase {
$this->config->expects($this->once())
->method('setUserValue')
->with($this->user->getUID(), 'files', 'show_hidden', $show);
->with($this->user->getUID(), 'files', 'show_hidden', '0');
$expected = new Http\Response();
$actual = $this->apiController->showHiddenFiles($show);