summaryrefslogtreecommitdiffstats
path: root/apps/provisioning_api
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-01-23 11:41:17 +0100
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-02-07 11:23:30 +0100
commit0753be3ff29b459bdbb23deecc37c3e4c05d8464 (patch)
treee4b652684c69dbd4095174ec2d26978da4406128 /apps/provisioning_api
parent7a628c036132bad8eac152a1efcb4a15f42a44d6 (diff)
downloadnextcloud-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/provisioning_api')
-rw-r--r--apps/provisioning_api/tests/Controller/UsersControllerTest.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/provisioning_api/tests/Controller/UsersControllerTest.php b/apps/provisioning_api/tests/Controller/UsersControllerTest.php
index e5c5678efd3..9e2da244f7b 100644
--- a/apps/provisioning_api/tests/Controller/UsersControllerTest.php
+++ b/apps/provisioning_api/tests/Controller/UsersControllerTest.php
@@ -73,7 +73,6 @@ use Psr\Log\LoggerInterface;
use Test\TestCase;
class UsersControllerTest extends TestCase {
-
/** @var IUserManager|MockObject */
protected $userManager;
/** @var IConfig|MockObject */
@@ -497,7 +496,7 @@ class UsersControllerTest extends TestCase {
->method('generate')
->with(10)
->willReturnCallback(function () {
- return (string)rand(1000000000, 9999999999);
+ return (string)rand(100000000, 999999999);
});
$this->assertTrue(key_exists(