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()