aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2023-08-07 12:03:11 +0200
committerMarcel Klehr <mklehr@gmx.net>2023-08-07 12:03:11 +0200
commitf62711d2ae78d807bbd3675ff26aa8852a18b7c1 (patch)
tree28ecad3b87eef6c0d958644e0ddabc11462786e8 /tests
parentaf113ddad4bc435364b8be91996bdf546b1448a5 (diff)
downloadnextcloud-server-f62711d2ae78d807bbd3675ff26aa8852a18b7c1.tar.gz
nextcloud-server-f62711d2ae78d807bbd3675ff26aa8852a18b7c1.zip
Fix TextProcessing test for 32bit
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/TextProcessing/TextProcessingTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/TextProcessing/TextProcessingTest.php b/tests/lib/TextProcessing/TextProcessingTest.php
index 797571019ce..1649072ae8c 100644
--- a/tests/lib/TextProcessing/TextProcessingTest.php
+++ b/tests/lib/TextProcessing/TextProcessingTest.php
@@ -259,7 +259,7 @@ class TextProcessingTest extends \Test\TestCase {
public function testNonexistentTask() {
$this->expectException(NotFoundException::class);
- $this->manager->getTask(98765432456);
+ $this->manager->getTask(2147483646);
}
public function testTaskFailure() {