1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
From d5130afc45c09f953ee10999df7eb419dcc8e7a9 Mon Sep 17 00:00:00 2001
From: Remi Collet <remi@remirepo.net>
Date: Tue, 31 Oct 2017 07:46:56 +0100
Subject: [PATCH] Fix #196 don't test deprecated abbreviations
---
test/TimezoneTest.php | 3 ---
1 file changed, 3 deletions(-)
diff --git a/test/TimezoneTest.php b/test/TimezoneTest.php
index d9c3a0ff..7488ee36 100644
--- a/test/TimezoneTest.php
+++ b/test/TimezoneTest.php
@@ -117,10 +117,7 @@ public function testAbbreviationsByTypeAsString($value, $valid)
public function abbreviationProvider()
{
return [
- ['bnt', true], // Brunei Darussalam Time
['cest', true], // Central European Summer Time
- ['easst', true], // Easter Island Summer Time
- ['egst', true], // Eastern Greenland Summer Time
['hkt', true], // Hong Kong Time
['nzdt', true], // New Zealand Daylight Time
['sast', true], // South Africa Standard Time
|