diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2020-11-12 08:46:37 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2020-11-16 13:19:59 +0000 |
commit | 2e0352182b08977f4db521ae42a5e65dba30e748 (patch) | |
tree | e0661079c42c30b13f72b8b8edf1e24fe8089f62 | |
parent | e13c5ece4f811da8f89259294af7944af5e1ce81 (diff) | |
download | nextcloud-server-2e0352182b08977f4db521ae42a5e65dba30e748.tar.gz nextcloud-server-2e0352182b08977f4db521ae42a5e65dba30e748.zip |
Fix unit test method name
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-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 88dfc8bd64a..ac4cc15a50c 100644 --- a/tests/lib/Share20/ManagerTest.php +++ b/tests/lib/Share20/ManagerTest.php @@ -900,7 +900,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')); |