From 3c86fa66eeed9a453f27f1cd2da79f71c7bf26cc Mon Sep 17 00:00:00 2001 From: Ashutosh pathak Date: Wed, 20 May 2020 11:22:28 +0000 Subject: [PATCH] Apply fixes from StyleCI --- tests/Unit/Common/HelpersTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/Common/HelpersTest.php b/tests/Unit/Common/HelpersTest.php index 740fc38237..d1578284b9 100644 --- a/tests/Unit/Common/HelpersTest.php +++ b/tests/Unit/Common/HelpersTest.php @@ -39,7 +39,7 @@ public function test_getDateHtml_whenValidDateTimeStringIsPassedAsNull_shouldRet $expectedDateTime = $now->clone()->setTimezone('Asia/Kolkata')->format('M j, Y, g:i a'); $expectedDate = $now->clone()->setTimezone('Asia/Kolkata')->format('M j, Y'); - $this->assertEquals("", getDateHtml($now->toDateTimeString())); + $this->assertEquals("", getDateHtml($now->toDateTimeString())); } public function test_getDateHtml_whenAnInValidAndNonEmptyDateIsPassed_shouldGiveReturnEmptyDate()