From 60edb789777861c5da0c934c3259ded00131a82f Mon Sep 17 00:00:00 2001 From: Wouter Wolters <typo3@wouterwolters.nl> Date: Tue, 10 Aug 2021 18:53:38 +0200 Subject: [PATCH] [TASK] Remove duplicate array keys in UnitTests Resolves: #94788 Releases: master Change-Id: I687ce575ddd15f8a2f9ce4ba9ded6f3087e4b66f Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/70405 Tested-by: core-ci <typo3@b13.com> Tested-by: Benni Mack <benni@typo3.org> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by: Benni Mack <benni@typo3.org> Reviewed-by: crell <larry@garfieldtech.com> Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> --- .../Tests/Unit/Mvc/Validation/DateRangeValidatorTest.php | 6 +++--- .../Tests/Unit/ContentObject/ContentObjectRendererTest.php | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/typo3/sysext/form/Tests/Unit/Mvc/Validation/DateRangeValidatorTest.php b/typo3/sysext/form/Tests/Unit/Mvc/Validation/DateRangeValidatorTest.php index af517d9fab6f..5ad2cc997c82 100644 --- a/typo3/sysext/form/Tests/Unit/Mvc/Validation/DateRangeValidatorTest.php +++ b/typo3/sysext/form/Tests/Unit/Mvc/Validation/DateRangeValidatorTest.php @@ -126,7 +126,7 @@ class DateRangeValidatorTest extends UnitTestCase public function DateRangeValidatorReturnsFalseIfInputIsLowerThanMaximumOption() { $input = \DateTime::createFromFormat('Y-m-d', '2018-03-17'); - $options = ['maximum' => '', 'maximum' => '2018-03-18']; + $options = ['maximum' => '2018-03-18']; $validator = $this->getMockBuilder(DateRangeValidator::class) ->setMethods(['translateErrorMessage']) ->setConstructorArgs([$options]) @@ -141,7 +141,7 @@ class DateRangeValidatorTest extends UnitTestCase public function DateRangeValidatorReturnsFalseIfInputIsEqualsMaximumOption() { $input = \DateTime::createFromFormat('Y-m-d', '2018-03-18'); - $options = ['maximum' => '', 'maximum' => '2018-03-18']; + $options = ['maximum' => '2018-03-18']; $validator = $this->getMockBuilder(DateRangeValidator::class) ->setMethods(['translateErrorMessage']) ->setConstructorArgs([$options]) @@ -156,7 +156,7 @@ class DateRangeValidatorTest extends UnitTestCase public function DateRangeValidatorReturnsTrueIfInputIsGreaterThanMaximumOption() { $input = \DateTime::createFromFormat('Y-m-d', '2018-03-19'); - $options = ['maximum' => '', 'maximum' => '2018-03-18']; + $options = ['maximum' => '2018-03-18']; $validator = $this->getMockBuilder(DateRangeValidator::class) ->setMethods(['translateErrorMessage']) ->setConstructorArgs([$options]) diff --git a/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php b/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php index 1360d1190c40..568ee2144ba7 100644 --- a/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php +++ b/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php @@ -5786,7 +5786,6 @@ class ContentObjectRendererTest extends UnitTestCase 'zero is not null' => [0, 0, $conf], 'float zero is not null' => [0.0, 0.0, $conf], 'false is not null' => [false, false, $conf], - 'zero is not null' => [0, 0, $conf], 'zero string is not null' => ['0', '0', $conf], 'empty string is not null' => ['', '', $conf], 'whitespace is not null' => ["\t" . '', "\t" . '', $conf], -- GitLab