diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-09-15 15:47:45 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-09-16 07:23:29 +0200 |
commit | f439c07ba9e76d0baebc7ec3000ee5bc5bc3c675 (patch) | |
tree | fc9da90cd28ef05f005ccca2211e3311abe083b5 /core/js/tests | |
parent | 996639f4fbd4107851efc11ee34b24cead43e790 (diff) | |
download | nextcloud-server-f439c07ba9e76d0baebc7ec3000ee5bc5bc3c675.tar.gz nextcloud-server-f439c07ba9e76d0baebc7ec3000ee5bc5bc3c675.zip |
Fix allow reshare for owner when sharing with self through group
Diffstat (limited to 'core/js/tests')
-rw-r--r-- | core/js/tests/specs/shareitemmodelSpec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/tests/specs/shareitemmodelSpec.js b/core/js/tests/specs/shareitemmodelSpec.js index 2f676a4ba1f..c1d820052e2 100644 --- a/core/js/tests/specs/shareitemmodelSpec.js +++ b/core/js/tests/specs/shareitemmodelSpec.js @@ -274,7 +274,7 @@ describe('OC.Share.ShareItemModel', function() { ['0x12345', null], [ '', null], ], function(value) { - expect(OC.Share._parseTime(value[0])).toEqual(value[1]); + expect(OC.Share.ShareItemModel.prototype._parseTime(value[0])).toEqual(value[1]); }); }); |