Skip to content

Commit 040284f

Browse files
authored
Remove utcnow warnings (#14)
1 parent de089d1 commit 040284f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

tests/test_string_based_date_time.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from datetime import datetime, timedelta
1+
from datetime import datetime, timedelta, timezone
22

33
import arrow
44
import pytest
@@ -10,7 +10,7 @@
1010

1111

1212
def test_consistency():
13-
t = datetime.utcnow()
13+
t = datetime.now()
1414
sbdt = StringBasedDateTime(t)
1515
with pytest.raises(TypeError): # can't subtract offset-naive and offset-aware datetimes
1616
assert abs(sbdt.datetime - t) <= ZERO_SKEW
@@ -75,6 +75,6 @@ def test_non_mutation():
7575
def test_zulu_default():
7676
"""When a non-string datetime is provided, expect the string representation to use Z as the UTC timezone."""
7777

78-
assert StringBasedDateTime(datetime.utcnow()).endswith('Z')
78+
assert StringBasedDateTime(datetime.now(timezone.utc)).endswith('Z')
7979
assert StringBasedDateTime(arrow.utcnow().datetime).endswith('Z')
8080
assert StringBasedDateTime(arrow.utcnow()).endswith('Z')

tests/test_types.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import enum
2-
from datetime import datetime
2+
from datetime import datetime, timezone
33
from typing import Optional, List
44

55
from implicitdict import ImplicitDict, StringBasedDateTime, StringBasedTimeDelta
@@ -87,12 +87,12 @@ class NormalUsageData(ImplicitDict):
8787

8888
bar: int = 0
8989
"""The bar of the data.
90-
90+
9191
Indents should not be included in docstrings."""
9292

9393
baz: Optional[float]
9494
"""If this baz is specified, it provides additional information.
95-
95+
9696
Final docstring newlines should be omitted.
9797
"""
9898

@@ -171,12 +171,12 @@ class SpecialTypesData(ImplicitDict):
171171

172172
@staticmethod
173173
def example_value():
174-
return ImplicitDict.parse({"datetime": datetime.utcnow().isoformat(), "timedelta": "12h", "yesno": "Yes", "boolean": "true"}, SpecialTypesData)
174+
return ImplicitDict.parse({"datetime": datetime.now(timezone.utc).isoformat(), "timedelta": "12h", "yesno": "Yes", "boolean": "true"}, SpecialTypesData)
175175

176176

177177
class NestedDefinitionsData(ImplicitDict):
178178
special_types: SpecialTypesData
179179

180180
@staticmethod
181181
def example_value():
182-
return ImplicitDict.parse({"special_types": {"datetime": datetime.utcnow().isoformat(), "timedelta": "12h", "yesno": "Yes", "boolean": "true"}}, NestedDefinitionsData)
182+
return ImplicitDict.parse({"special_types": {"datetime": datetime.now(timezone.utc).isoformat(), "timedelta": "12h", "yesno": "Yes", "boolean": "true"}}, NestedDefinitionsData)

0 commit comments

Comments
 (0)