diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-01-28 12:28:30 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-01-28 15:25:34 +0100 |
commit | 7e1de0e3c29d79ba37b6ab911c398eda0aff57ca (patch) | |
tree | 3e1b34bbd83fe33fd3774676ccf011e66c22a096 /core/js/tests | |
parent | b063ddb05b71988d92fe140ca003ad58301cfcc8 (diff) | |
download | nextcloud-server-7e1de0e3c29d79ba37b6ab911c398eda0aff57ca.tar.gz nextcloud-server-7e1de0e3c29d79ba37b6ab911c398eda0aff57ca.zip |
Fix share default expiration date calculation
Now using UTC dates with moment js to accurately add the number of days
Diffstat (limited to 'core/js/tests')
-rw-r--r-- | core/js/tests/specs/shareitemmodelSpec.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/tests/specs/shareitemmodelSpec.js b/core/js/tests/specs/shareitemmodelSpec.js index d696b159e47..e1a14bbbe7f 100644 --- a/core/js/tests/specs/shareitemmodelSpec.js +++ b/core/js/tests/specs/shareitemmodelSpec.js @@ -634,8 +634,8 @@ describe('OC.Share.ShareItemModel', function() { password: '', passwordChanged: false, permissions: OC.PERMISSION_READ, - expireDate: '2015-7-24 00:00:00', - shareType: OC.Share.SHARE_TYPE_LINK + expireDate: '2015-07-24 00:00:00', + shareType: OC.Share.SHARE_TYPE_LINK }); expect(updateShareStub.notCalled).toEqual(true); clock.restore(); |