Skip to content

Commit

Permalink
CI: fix build against nette/utils 4
Browse files Browse the repository at this point in the history
  • Loading branch information
xificurk committed Feb 4, 2023
1 parent 965791b commit 202e465
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/FormRenderer/Filters/SafeTranslateFilterTest.phpt
Expand Up @@ -87,8 +87,8 @@ class SafeTranslateFilterTest extends Tester\TestCase
'expectedTranslation' => 'translated: ["message"]',
],
[
'inputArguments' => [1, 2, 3],
'expectedTranslation' => 'translated: [1,2,3]',
'inputArguments' => ['1', 2, 3],
'expectedTranslation' => 'translated: ["1",2,3]',
],
[
'inputArguments' => [$netteHtml],
Expand Down

0 comments on commit 202e465

Please sign in to comment.