Skip to content

Commit 2f72656

Browse files
committed
run tests with PHPUnit 12.3
1 parent 08587b6 commit 2f72656

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/AbstractAsciiTestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ public static function provideBytesAt(): array
6969
}
7070

7171
#[DataProvider('provideIndexOf')]
72-
public function testContainsAny(?int $result, string $string, $needle)
72+
public function testContainsAny(?int $result, string $string, $needle, int $offset)
7373
{
7474
$instance = static::createFromString($string);
7575

7676
$this->assertSame(null !== $instance->indexOf($needle), $instance->containsAny($needle));
7777
}
7878

7979
#[DataProvider('provideIndexOfIgnoreCase')]
80-
public function testContainsAnyIgnoreCase(?int $result, string $string, $needle)
80+
public function testContainsAnyIgnoreCase(?int $result, string $string, $needle, int $offset)
8181
{
8282
$instance = static::createFromString($string);
8383

0 commit comments

Comments
 (0)