Skip to content

Commit 57e1128

Browse files
authoredMar 22, 2025··
Merge pull request #1627 from cpina/stop-using-mst-timezone
Use America/Phoenix timezone instead of MST timezone
2 parents 28e046c + 56e3c83 commit 57e1128

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎tests/test_alerter.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# Create a consistent "local" timezone and offset for the tests, for tests that
1515
# compare the offset between UTC and local time. For simplicity and
1616
# predictability, use a time zone that doesn't have daylight savings.
17-
TZ_LOCAL = "MST"
17+
TZ_LOCAL = "America/Phoenix"
1818
TZ_LOCAL_OFFSET = -7
1919
TZ_UTC = "UTC"
2020

@@ -208,8 +208,8 @@ def test_allowed_only_tz(self):
208208
a = alerter.Alerter(
209209
{
210210
"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
213213
}
214214
)
215215
with freeze_time("15:00"):
@@ -241,8 +241,8 @@ def test_allowed_not_tz(self):
241241
a = alerter.Alerter(
242242
{
243243
"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
246246
}
247247
)
248248
with freeze_time("15:55"):

0 commit comments

Comments
 (0)
Please sign in to comment.