Skip to content

Commit 541d7c4

Browse files
author
Val Brodsky
committed
PR changes
Make comments read better
1 parent b2f348d commit 541d7c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/test_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
('2011-11-04T00:05:23Z', '2011-11-04T00:05:23Z'),
99
('2011-11-04T00:05:23+00:00', '2011-11-04T00:05:23Z'),
1010
('2011-11-04T00:05:23+05:00', '2011-11-04T00:05:23Z'
11-
), #NOTE not converting with timezone... this is compatible with out current implementation
11+
), # NOTE: The current implementation is not converting from timezone other then UTC. This how it has been working prior to my change.
1212
('2011-11-04T00:05:23', '2011-11-04T00:05:23Z')
1313
])
1414
def test_datetime_parsing(datetime_str, expected_datetime_str):
15-
# NOTE I would normally not tested expected using another function from sdk code, but in this case this is exactly the usage in _validate_parse_datetime
15+
# NOTE I would normally not take 'expected' using another function from sdk code, but in this case this is exactly the usage in _validate_parse_datetime
1616
assert format_iso_datetime(
1717
format_iso_from_string(datetime_str)) == expected_datetime_str

0 commit comments

Comments
 (0)