Skip to content

Commit

Permalink
Fix tests on PHP 7.4 (named arguments are not available)
Browse files Browse the repository at this point in the history
  • Loading branch information
cedric-anne committed Jul 24, 2024
1 parent 305535e commit ee20aea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/CommonTreeDropdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function testSanitizeSeparatorInCompletename(?string $raw, ?string $sanit
/**
* @dataProvider completenameProvider
*/
public function testUnsanitizeSeparatorInCompletename(?string $sanitized, ?string $raw)
public function testUnsanitizeSeparatorInCompletename(?string $raw, ?string $sanitized)
{
$this->variable(\CommonTreeDropdown::unsanitizeSeparatorInCompletename($sanitized))->isIdenticalTo($raw);
}
Expand Down

0 comments on commit ee20aea

Please sign in to comment.