Skip to content

Commit b447be6

Browse files
Toben ArcherToben Archer
Toben Archer
authored and
Toben Archer
committed
Adjusted to remove abiguity.
I changed the time zone that is used in the testing to remove abiguity on what the result is. The timezone now used has a 1 to 1 relationship between windows and Iana.
1 parent 3dd984f commit b447be6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_protocol.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ def test_to_api_case(self):
2525
assert(self.proto.to_api_case("CaseTest") == "case_test")
2626

2727
def test_get_iana_tz(self):
28-
assert(self.proto.get_iana_tz('Greenwich Standard Time') == 'Atlantic/St_Helena')
28+
assert(self.proto.get_iana_tz('Sudan Standard Time') == 'Africa/Khartoum')
2929

3030
def test_get_iana_tz_standard_time(self):
31-
assert(self.proto.get_iana_tz('Greenwich') == 'Atlantic/St_Helena')
31+
assert(self.proto.get_iana_tz('Sudan') == 'Africa/Khartoum')
3232

3333
def test_get_iana_tz_not_found(self):
3434
with pytest.raises(UnknownTimeZoneError):

0 commit comments

Comments
 (0)