Skip to content

Commit

Permalink
fix: run rector for fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
datamweb committed Sep 20, 2024
1 parent d5d7654 commit 7f17d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Language/AbstractTranslationTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ final public function testAllLocalizationParametersAreNotTranslated(string $loca

foreach ($matches as $match) {
foreach ($match as $parameter) {
if (strpos($translated[$key], (string) $parameter) === false) {
if (strpos($translated[$key], $parameter) === false) {
$id = sprintf('%s.%s', substr($file, 0, -4), $key);

$diffs[$id] ??= [];
Expand Down

0 comments on commit 7f17d8d

Please sign in to comment.