diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2021-05-29 00:02:02 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2021-05-29 00:02:56 +0200 |
commit | b0bdd2dfbc08fbabec50b6681d7ca6d78a9833ba (patch) | |
tree | 1badf5c2b4bee188d51b6594e6e9c0dba88d787d /apps/files/tests | |
parent | 621a4bc7305b0babaef8dabb27b4c077b7a17c02 (diff) | |
download | nextcloud-server-b0bdd2dfbc08fbabec50b6681d7ca6d78a9833ba.tar.gz nextcloud-server-b0bdd2dfbc08fbabec50b6681d7ca6d78a9833ba.zip |
Fix test on master
Regression by https://github.com/nextcloud/server/pull/26410
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'apps/files/tests')
-rw-r--r-- | apps/files/tests/Controller/ApiControllerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/tests/Controller/ApiControllerTest.php b/apps/files/tests/Controller/ApiControllerTest.php index 1fb6490f143..dd64bfb8330 100644 --- a/apps/files/tests/Controller/ApiControllerTest.php +++ b/apps/files/tests/Controller/ApiControllerTest.php @@ -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); |