Remove extra spaces
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
parent
53e73dc46f
commit
9e84664f21
|
@ -769,7 +769,6 @@ class ManagerTest extends \Test\TestCase {
|
||||||
$this->expectException(\OCP\Share\Exceptions\GenericShareException::class);
|
$this->expectException(\OCP\Share\Exceptions\GenericShareException::class);
|
||||||
$this->expectExceptionMessage('Expiration date is in the past');
|
$this->expectExceptionMessage('Expiration date is in the past');
|
||||||
|
|
||||||
|
|
||||||
// Expire date in the past
|
// Expire date in the past
|
||||||
$past = new \DateTime();
|
$past = new \DateTime();
|
||||||
$past->sub(new \DateInterval('P1D'));
|
$past->sub(new \DateInterval('P1D'));
|
||||||
|
@ -780,7 +779,6 @@ class ManagerTest extends \Test\TestCase {
|
||||||
self::invokePrivate($this->manager, 'validateExpirationDate', [$share]);
|
self::invokePrivate($this->manager, 'validateExpirationDate', [$share]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function testValidateExpirationDateEnforceButNotSet() {
|
public function testValidateExpirationDateEnforceButNotSet() {
|
||||||
$this->expectException(\InvalidArgumentException::class);
|
$this->expectException(\InvalidArgumentException::class);
|
||||||
$this->expectExceptionMessage('Expiration date is enforced');
|
$this->expectExceptionMessage('Expiration date is enforced');
|
||||||
|
@ -970,7 +968,6 @@ class ManagerTest extends \Test\TestCase {
|
||||||
$this->assertEquals($save, $share->getExpirationDate());
|
$this->assertEquals($save, $share->getExpirationDate());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function testValidateExpirationDateHookException() {
|
public function testValidateExpirationDateHookException() {
|
||||||
$this->expectException(\Exception::class);
|
$this->expectException(\Exception::class);
|
||||||
$this->expectExceptionMessage('Invalid date!');
|
$this->expectExceptionMessage('Invalid date!');
|
||||||
|
@ -1008,7 +1005,6 @@ class ManagerTest extends \Test\TestCase {
|
||||||
$this->assertEquals(null, $share->getExpirationDate());
|
$this->assertEquals(null, $share->getExpirationDate());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function testUserCreateChecksShareWithGroupMembersOnlyDifferentGroups() {
|
public function testUserCreateChecksShareWithGroupMembersOnlyDifferentGroups() {
|
||||||
$this->expectException(\Exception::class);
|
$this->expectException(\Exception::class);
|
||||||
$this->expectExceptionMessage('Sharing is only allowed with group members');
|
$this->expectExceptionMessage('Sharing is only allowed with group members');
|
||||||
|
|
Loading…
Reference in New Issue