Skip to content

Commit 8fb49d1

Browse files
Remove duplicate assert for already existing formatter
time_short uses the same formatter as date_short but causes tests to fail because of different white spaces
1 parent 9afd231 commit 8fb49d1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

tests/Integration/FormatterTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ public function intlFormatterService(): void
3333
self::assertSame('I got 1,002.25 as average value', $intlFormat->format('I got %number as average value', 1002.25));
3434
self::assertSame('I got 1,002.2500 as average value', $intlFormat->format('I got %.4number as average value', 1002.25));
3535
self::assertSame('I got 001,002.2 as average value', $intlFormat->format('I got %09.1number as average value', 1002.25));
36-
self::assertSame('I is 5:30 AM on my clock.', $intlFormat->format('I is %time_short on my clock.', $date));
3736
self::assertSame('The timezone id is US/Arizona.', $intlFormat->format('The timezone id is %timeseries_id.', $date));
3837
self::assertSame('I am from Italy.', $intlFormat->format('I am from %region.', 'it_IT'));
3938
self::assertSame('You have 10$.', $intlFormat->format('You have 10%currency_symbol.', ''));

0 commit comments

Comments
 (0)