diff options
author | Björn Schießle <bjoern@schiessle.org> | 2015-12-14 16:04:05 +0100 |
---|---|---|
committer | Björn Schießle <bjoern@schiessle.org> | 2015-12-15 11:45:26 +0100 |
commit | 73dda65a2e67d20fe382a011e558046db649a79e (patch) | |
tree | 435675d17a4d5cd030b4af9b1117b03a01872d34 /apps/files_sharing/tests | |
parent | a1d59a92ab1764cd19f3816f999af85ae9158a11 (diff) | |
download | nextcloud-server-73dda65a2e67d20fe382a011e558046db649a79e.tar.gz nextcloud-server-73dda65a2e67d20fe382a011e558046db649a79e.zip |
show display name but internally use the user name
Diffstat (limited to 'apps/files_sharing/tests')
-rw-r--r-- | apps/files_sharing/tests/controller/sharecontroller.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_sharing/tests/controller/sharecontroller.php b/apps/files_sharing/tests/controller/sharecontroller.php index 0b56aafc8a9..84e1a62b858 100644 --- a/apps/files_sharing/tests/controller/sharecontroller.php +++ b/apps/files_sharing/tests/controller/sharecontroller.php @@ -166,6 +166,7 @@ class ShareControllerTest extends \Test\TestCase { $response = $this->shareController->showShare($this->token); $sharedTmplParams = array( 'displayName' => $this->user, + 'owner' => $this->user, 'filename' => 'file1.txt', 'directory_path' => '/file1.txt', 'mimetype' => 'text/plain', |