diff options
author | Marcel Klehr <mklehr@gmx.net> | 2023-08-07 12:03:11 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2023-08-09 10:43:59 +0200 |
commit | 41918cc8b2e942a14c95dfadc9dffc65daf23f47 (patch) | |
tree | 05e284f0ac3c840ce68f6b4b2a0cb5d412c6f909 | |
parent | 4bae251bafb9952628a0ebe2d32f4165983ed8ca (diff) | |
download | nextcloud-server-41918cc8b2e942a14c95dfadc9dffc65daf23f47.tar.gz nextcloud-server-41918cc8b2e942a14c95dfadc9dffc65daf23f47.zip |
Fix TextProcessing test for 32bit
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
-rw-r--r-- | tests/lib/TextProcessing/TextProcessingTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/TextProcessing/TextProcessingTest.php b/tests/lib/TextProcessing/TextProcessingTest.php index 790593bac23..3bda73e995b 100644 --- a/tests/lib/TextProcessing/TextProcessingTest.php +++ b/tests/lib/TextProcessing/TextProcessingTest.php @@ -266,7 +266,7 @@ class TextProcessingTest extends \Test\TestCase { public function testNonexistentTask() { $this->expectException(NotFoundException::class); - $this->manager->getTask(98765432456); + $this->manager->getTask(2147483646); } public function testTaskFailure() { |