diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-23 11:41:17 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-02-07 11:23:30 +0100 |
commit | 0753be3ff29b459bdbb23deecc37c3e4c05d8464 (patch) | |
tree | e4b652684c69dbd4095174ec2d26978da4406128 /apps/files_trashbin | |
parent | 7a628c036132bad8eac152a1efcb4a15f42a44d6 (diff) | |
download | nextcloud-server-0753be3ff29b459bdbb23deecc37c3e4c05d8464.tar.gz nextcloud-server-0753be3ff29b459bdbb23deecc37c3e4c05d8464.zip |
Fix a few tests that were using too big int values for 32bits
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/tests/BackgroundJob/ExpireTrashTest.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files_trashbin/tests/BackgroundJob/ExpireTrashTest.php b/apps/files_trashbin/tests/BackgroundJob/ExpireTrashTest.php index bf5d6bc65ae..3264c11f8fa 100644 --- a/apps/files_trashbin/tests/BackgroundJob/ExpireTrashTest.php +++ b/apps/files_trashbin/tests/BackgroundJob/ExpireTrashTest.php @@ -33,7 +33,6 @@ use OCP\IConfig; use OCP\IUserManager; use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; -use Psr\Log\LoggerInterface; class ExpireTrashTest extends TestCase { /** @var IConfig|MockObject */ @@ -61,7 +60,7 @@ class ExpireTrashTest extends TestCase { $this->time = $this->createMock(ITimeFactory::class); $this->time->method('getTime') - ->willReturn(99999999999); + ->willReturn(999999999); $this->jobList->expects($this->once()) ->method('setLastRun'); |