From 41918cc8b2e942a14c95dfadc9dffc65daf23f47 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Mon, 7 Aug 2023 12:03:11 +0200 Subject: [PATCH] Fix TextProcessing test for 32bit Signed-off-by: Marcel Klehr --- tests/lib/TextProcessing/TextProcessingTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() {