Skip to content

Commit cbe45a0

Browse files
Change Environment timestamps to be in UTC (#2007)
Signed-off-by: Felix Wang <wangfelix98@gmail.com>
1 parent 06b1f37 commit cbe45a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/python/tests/integration/feature_repos/repo_configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ class Environment:
213213
data_source_creator: DataSourceCreator
214214

215215
end_date: datetime = field(
216-
default=datetime.now().replace(microsecond=0, second=0, minute=0)
216+
default=datetime.utcnow().replace(microsecond=0, second=0, minute=0)
217217
)
218218

219219
def __post_init__(self):

0 commit comments

Comments
 (0)