Skip to content

Commit

Permalink
Fix TextProcessing test for 32bit
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
  • Loading branch information
marcelklehr committed Aug 7, 2023
1 parent af113dd commit f62711d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/lib/TextProcessing/TextProcessingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ public function testMultipleProvidersShouldBeRegisteredAndRunCorrectly() {

public function testNonexistentTask() {
$this->expectException(NotFoundException::class);
$this->manager->getTask(98765432456);
$this->manager->getTask(2147483646);
}

public function testTaskFailure() {
Expand Down

0 comments on commit f62711d

Please sign in to comment.