diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-08-26 11:47:35 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-08-26 17:57:24 +0200 |
commit | f0c34a3e89907cab471dcc35b9eebae8d60ca598 (patch) | |
tree | c89774540df2ffe847ef80b7cab71509dcbfa4be /apps/sharebymail/tests | |
parent | 6a130d01e7ec5d306533a6cdcc7079c049c40f22 (diff) | |
download | nextcloud-server-f0c34a3e89907cab471dcc35b9eebae8d60ca598.tar.gz nextcloud-server-f0c34a3e89907cab471dcc35b9eebae8d60ca598.zip |
Allow the expiration date to be set to null
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/sharebymail/tests')
-rw-r--r-- | apps/sharebymail/tests/ShareByMailProviderTest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/sharebymail/tests/ShareByMailProviderTest.php b/apps/sharebymail/tests/ShareByMailProviderTest.php index e649a9dbd0b..9ab9dbef4a1 100644 --- a/apps/sharebymail/tests/ShareByMailProviderTest.php +++ b/apps/sharebymail/tests/ShareByMailProviderTest.php @@ -868,6 +868,7 @@ class ShareByMailProviderTest extends TestCase { 'https://example.com/file.txt', 'OwnerUser', 'john@doe.com', + null, ]); } @@ -968,6 +969,7 @@ class ShareByMailProviderTest extends TestCase { 'https://example.com/file.txt', 'InitiatorUser', 'john@doe.com', + null, ]); } } |