Skip to content

Commit

Permalink
[TASK] Avoid minor CGL violation
Browse files Browse the repository at this point in the history
  • Loading branch information
lolli42 committed Aug 23, 2023
1 parent 16888df commit 2febf07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Unit/Core/Parser/TemplateParserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ public function booleanArgumentsMustBeConvertedIntoBooleanNodes(): void
$subject = new TemplateParser();
$subject->setRenderingContext($context);
$method = new \ReflectionMethod($subject, 'parseArguments');
$parsedArguments= $method->invoke($subject, 'var1="1" var2="0"}', $viewHelper);
$parsedArguments = $method->invoke($subject, 'var1="1" var2="0"}', $viewHelper);
self::assertEquals(
[
'var1' => new BooleanNode(new NumericNode(1)),
Expand Down

0 comments on commit 2febf07

Please sign in to comment.