removed unneeded annotation in tests

This commit is contained in:
Fabien Potencier 2017-05-15 08:15:28 -07:00
parent 9fd95ca9ef
commit 94871fac80
2 changed files with 2 additions and 10 deletions

View File

@ -228,15 +228,8 @@ abstract class AbstractIntlDateFormatterTest extends TestCase
array('s', 43200, '0'), // 12 hours
// general
array("yyyy.MM.dd 'at' HH:mm:ss zzz", 0, '1970.01.01 at 00:00:00 GMT'),
array('K:mm a, z', 0, '0:00 AM, GMT'),
// timezone
array('z', 0, 'GMT'),
array('zz', 0, 'GMT'),
array('zzz', 0, 'GMT'),
array('zzzz', 0, 'GMT'),
array('zzzzz', 0, 'GMT'),
array("yyyy.MM.dd 'at' HH:mm:ss zzz", 0, '1970.01.01 at 00:00:00 UTC'),
array('K:mm a, z', 0, '0:00 AM, UTC'),
// general, DateTime
array('y-M-d', $dateTime, '1970-1-1'),

View File

@ -32,7 +32,6 @@ class IntlDateFormatterTest extends AbstractIntlDateFormatterTest
/**
* @dataProvider formatTimezoneProvider
* @requires PHP 5.5
*/
public function testFormatTimezone($pattern, $timezone, $expected)
{