diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2020-01-10 19:11:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-10 19:11:32 +0100 |
commit | b805d0c764e82220093782a334f760362f057a5e (patch) | |
tree | 2b4b05fd40e77f3d1bef10f9f1667e70ccef5a29 /apps/files/tests/Controller/ViewControllerTest.php | |
parent | 4b28da1dd9a6acf4f04b69474f18ce883323caa3 (diff) | |
parent | 22079347ea8798bcec80d56793e87adae1de499b (diff) | |
download | nextcloud-server-b805d0c764e82220093782a334f760362f057a5e.tar.gz nextcloud-server-b805d0c764e82220093782a334f760362f057a5e.zip |
Fix webdav url (#18804)
Fix webdav url
Diffstat (limited to 'apps/files/tests/Controller/ViewControllerTest.php')
-rw-r--r-- | apps/files/tests/Controller/ViewControllerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/tests/Controller/ViewControllerTest.php b/apps/files/tests/Controller/ViewControllerTest.php index f07af2a2fe5..30d7bdfdc6d 100644 --- a/apps/files/tests/Controller/ViewControllerTest.php +++ b/apps/files/tests/Controller/ViewControllerTest.php @@ -147,7 +147,7 @@ class ViewControllerTest extends TestCase { $nav->assign('usage', '123 B'); $nav->assign('quota', 100); $nav->assign('total_space', '100 B'); - //$nav->assign('webdavurl', ''); + $nav->assign('webdav_url', 'http://localhost/remote.php/dav/files/testuser1/'); $nav->assign('navigationItems', [ 'files' => [ 'id' => 'files', |