diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-01-10 12:11:26 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-01-10 12:13:05 +0100 |
commit | 22079347ea8798bcec80d56793e87adae1de499b (patch) | |
tree | 2b4b05fd40e77f3d1bef10f9f1667e70ccef5a29 /apps/files/tests | |
parent | 4b28da1dd9a6acf4f04b69474f18ce883323caa3 (diff) | |
download | nextcloud-server-22079347ea8798bcec80d56793e87adae1de499b.tar.gz nextcloud-server-22079347ea8798bcec80d56793e87adae1de499b.zip |
Fix webdav url
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/tests')
-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', |