diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2020-11-12 08:25:36 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2020-11-16 13:19:56 +0000 |
commit | e13c5ece4f811da8f89259294af7944af5e1ce81 (patch) | |
tree | 12d726413858cdfaaac86d23f14d2e65bed5f962 | |
parent | 42782ceeba97e0953e2d62a4eb68238203ccd3d6 (diff) | |
download | nextcloud-server-e13c5ece4f811da8f89259294af7944af5e1ce81.tar.gz nextcloud-server-e13c5ece4f811da8f89259294af7944af5e1ce81.zip |
Fix unit test for verifying enforced valid expiration date.
The enforced expiration date was not actually enabled, as for that
"shareapi_default_expire_date" needs to be explicitly set to "yes".
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r-- | tests/lib/Share20/ManagerTest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/lib/Share20/ManagerTest.php b/tests/lib/Share20/ManagerTest.php index 6a7d6290866..88dfc8bd64a 100644 --- a/tests/lib/Share20/ManagerTest.php +++ b/tests/lib/Share20/ManagerTest.php @@ -886,6 +886,7 @@ class ManagerTest extends \Test\TestCase { ->willReturnMap([ ['core', 'shareapi_enforce_expire_date', 'no', 'yes'], ['core', 'shareapi_expire_after_n_days', '7', '3'], + ['core', 'shareapi_default_expire_date', 'no', 'yes'], ]); $hookListener = $this->getMockBuilder('Dummy')->setMethods(['listener'])->getMock(); |