diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2020-11-12 08:46:37 +0100 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2020-11-12 11:57:31 +0100 |
commit | 3a53c2b6e57e3be9a0c78fb8c004ab2d00133751 (patch) | |
tree | b521fb3c3ca34fee28bf5becfcab3fdd6023890f /tests/lib | |
parent | e997f0fa46620bbb58e5539ddcefd8da6ac579da (diff) | |
download | nextcloud-server-3a53c2b6e57e3be9a0c78fb8c004ab2d00133751.tar.gz nextcloud-server-3a53c2b6e57e3be9a0c78fb8c004ab2d00133751.zip |
Fix unit test method name
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/Share20/ManagerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Share20/ManagerTest.php b/tests/lib/Share20/ManagerTest.php index 559e3a29639..d6e8081a8c6 100644 --- a/tests/lib/Share20/ManagerTest.php +++ b/tests/lib/Share20/ManagerTest.php @@ -903,7 +903,7 @@ class ManagerTest extends \Test\TestCase { $this->assertEquals($expected, $share->getExpirationDate()); } - public function testValidateExpirationDateNoDateNoDefaultNull() { + public function testValidateExpirationDateNoDefault() { $date = new \DateTime(); $date->add(new \DateInterval('P5D')); |