8000 removed unneeded annotation in tests · symfony/symfony@94871fa · GitHub
[go: up one dir, main page]

Skip to content

Commit 94871fa

Browse files
committed
removed unneeded annotation in tests
1 parent 9fd95ca commit 94871fa

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -228,15 +228,8 @@ public function formatProvider()
228228
array('s', 43200, '0'), // 12 hours
229229

230230
// general
231-
array("yyyy.MM.dd 'at' HH:mm:ss zzz", 0, '1970.01.01 at 00:00:00 GMT'),
232-
array('K:mm a, z', 0, '0:00 AM, GMT'),
233-
234-
// timezone
235-
array('z', 0, 'GMT'),
236-
array('zz', 0, 'GMT'),
237-
array('zzz', 0, 'GMT'),
238-
array('zzzz', 0, 'GMT'),
239-
array('zzzzz', 0, 'GMT'),
231+
array("yyyy.MM.dd 'at' HH:mm:ss zzz", 0, '1970.01.01 at 00:00:00 UTC'),
232+
array('K:mm a, z', 0, '0:00 AM, UTC'),
240233

241234
// general, DateTime
242235
array('y-M-d', $dateTime, '1970-1-1'),

src/Symfony/Component/Intl/Tests/DateFormatter/Verification/IntlDateFormatterTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ protected function setUp()
3232

3333
/**
3434
* @dataProvider formatTimezoneProvider
35-
* @requires PHP 5.5
3635
*/
3736
public function testFormatTimezone($pattern, $timezone, $expected)
3837
{

0 commit comments

Comments
 (0)
0