From b2c1d75fc529203911ebe39a23f9109e71a521ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 14 Jun 2021 12:58:23 +0200 Subject: [PATCH] fix parameters in test MaxHolder --- .../Tests/Validator/Household/MaxHolderValidatorTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Bundle/ChillPersonBundle/Tests/Validator/Household/MaxHolderValidatorTest.php b/src/Bundle/ChillPersonBundle/Tests/Validator/Household/MaxHolderValidatorTest.php index 9210926ce..02b03eb33 100644 --- a/src/Bundle/ChillPersonBundle/Tests/Validator/Household/MaxHolderValidatorTest.php +++ b/src/Bundle/ChillPersonBundle/Tests/Validator/Household/MaxHolderValidatorTest.php @@ -63,8 +63,8 @@ class MaxHolderValidatorTest extends ConstraintValidatorTestCase yield [ $household, [ - 'start' => '01-06-2010', - 'end' => '01-07-2010' + '{{ start }}' => '01-06-2010', + '{{ end }}' => '01-07-2010' ] ]; }