Skip to content

Commit 4868417

Browse files
committed
minor #1763 remove duplicate key (tacman)
This PR was merged into the 2.x branch. Discussion ---------- remove duplicate key | Q | A | ------------- | --- | Bug fix? | no | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Issues | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead --> | License | MIT First key was ignored Commits ------- 1f8af4e remove duplicate key
2 parents afc899d + 1f8af4e commit 4868417

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/StimulusBundle/tests/Twig/StimulusTwigExtensionTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,6 @@ public static function provideRenderStimulusAction(): iterable
205205
'actionName' => 'onClick',
206206
'eventName' => null,
207207
'parameters' => ['boolParam' => true, 'intParam' => 4, 'stringParam' => 'test'],
208-
'expectedString' => 'data-action="onClick"',
209208
'expectedString' => 'data-action="my-controller#onClick" data-my-controller-bool-param-param="true" data-my-controller-int-param-param="4" data-my-controller-string-param-param="test"',
210209
'expectedArray' => ['data-action' => 'my-controller#onClick', 'data-my-controller-bool-param-param' => 'true', 'data-my-controller-int-param-param' => '4', 'data-my-controller-string-param-param' => 'test'],
211210
];

0 commit comments

Comments
 (0)