From 718173ab1f40e94b60bd78faa613b6ab7ca4efc9 Mon Sep 17 00:00:00 2001 From: brandonkelly Date: Sat, 30 Nov 2024 19:29:37 -0800 Subject: [PATCH] Fixed testIsValidIntervalString --- tests/unit/helpers/DateTimeHelperTest.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/unit/helpers/DateTimeHelperTest.php b/tests/unit/helpers/DateTimeHelperTest.php index 02f182b894c..fc3a2fd636c 100644 --- a/tests/unit/helpers/DateTimeHelperTest.php +++ b/tests/unit/helpers/DateTimeHelperTest.php @@ -696,10 +696,6 @@ public function isInvalidIntervalStringDataProvider(): array [true, '1 year'], [true, '1 month'], [true, '1 minutes'], - - [false, ''], - [false, 'random string'], - ]; }