|
14 | 14 | # Create a consistent "local" timezone and offset for the tests, for tests that
|
15 | 15 | # compare the offset between UTC and local time. For simplicity and
|
16 | 16 | # predictability, use a time zone that doesn't have daylight savings.
|
17 |
| -TZ_LOCAL = "MST" |
| 17 | +TZ_LOCAL = "America/Phoenix" |
18 | 18 | TZ_LOCAL_OFFSET = -7
|
19 | 19 | TZ_UTC = "UTC"
|
20 | 20 |
|
@@ -208,8 +208,8 @@ def test_allowed_only_tz(self):
|
208 | 208 | a = alerter.Alerter(
|
209 | 209 | {
|
210 | 210 | "times_type": "only",
|
211 |
| - "time_lower": "09:00", # 9:00 MST, 16:00 UTC |
212 |
| - "time_upper": "10:00", # 10:00 MST, 17:00 UTC |
| 211 | + "time_lower": "09:00", # 9:00 America/Phoenix, 16:00 UTC |
| 212 | + "time_upper": "10:00", # 10:00 America/Phoenix, 17:00 UTC |
213 | 213 | }
|
214 | 214 | )
|
215 | 215 | with freeze_time("15:00"):
|
@@ -241,8 +241,8 @@ def test_allowed_not_tz(self):
|
241 | 241 | a = alerter.Alerter(
|
242 | 242 | {
|
243 | 243 | "times_type": "not",
|
244 |
| - "time_lower": "09:00", # 9:00 MST, 16:00 UTC |
245 |
| - "time_upper": "10:00", # 10:00 MST, 17:00 UTC |
| 244 | + "time_lower": "09:00", # 9:00 America/Phoenix, 16:00 UTC |
| 245 | + "time_upper": "10:00", # 10:00 America/Phoenix, 17:00 UTC |
246 | 246 | }
|
247 | 247 | )
|
248 | 248 | with freeze_time("15:55"):
|
|
0 commit comments