Skip to content

Commit f282f51

Browse files
Merge branch '7.4' into 8.0
* 7.4: [ObjectMapper] do not require mapping a target's required promoted property when not on source (#2) run tests with PHPUnit 12.3 [GitHub] Update .github/PULL_REQUEST_TEMPLATE.md to remove SF 7.2 as it's not supported anymore [CI] fixed the Intl data tests actions Tests fails due to unknown option -v which is shorthand of the --verbose as per the phpunit its removed without any replacement sebastianbergmann/phpunit#5647 (comment) [Mailer] Fix expected exception message to include quotes around "http(s)://" [WebProfilerBundle] Fix toolbar not rendering after replacing it [Validator] (60455) Validate translations for Arabic (ar) (60474) Remove translation state attribute for Twig template validator in Ukrainian translation [VarDumper] Fix dumping objects from the DOM extension [Mailer] Add MicrosoftGraph API Transport [Yaml] Fix code style [Tests] Adapt testAddHtmlContentWithErrors to be HTML5 compliant Add friendly name in the `to` field [ObjectMapper] read source metadata before transform [HtmlSanitizer] Fix force_attributes not replacing existing attribute in initial data
2 parents 4fa5cb4 + 2f72656 commit f282f51

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)