diff --git a/tests/framework/helpers/FormatConverterTest.php b/tests/framework/helpers/FormatConverterTest.php index 266cb25..3f6efd3 100644 --- a/tests/framework/helpers/FormatConverterTest.php +++ b/tests/framework/helpers/FormatConverterTest.php @@ -84,7 +84,7 @@ class FormatConverterTest extends TestCase $pattern = $fmt->getPattern(); if (defined('HHVM_VERSION') && $format === 'short') { - $pattern = str_replace(',', ' ', $pattern); // Remove comma between date and time ('M/d/yy, h:mm a') + $pattern = str_replace(',', '', $pattern); // Remove comma between date and time ('M/d/yy, h:mm a') } $this->assertEquals($expected, $pattern, "Format for $format $name does not match.");