Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: change datetime.now to utcnow (#251)
Fixes #228  🦕

I think it's related to #244 issue so changed datetime.now() to datetime.utcnow()
  • Loading branch information
HemangChothani committed Aug 25, 2020
1 parent 136c097 commit 3465d08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/system/test_system.py
Expand Up @@ -2368,7 +2368,7 @@ def test_get_signed_policy_v4(self):
{"bucket": bucket_name},
["starts-with", "$Content-Type", "text/pla"],
],
expiration=datetime.datetime.now() + datetime.timedelta(hours=1),
expiration=datetime.datetime.utcnow() + datetime.timedelta(hours=1),
fields={"content-type": "text/plain"},
)
with open(blob_name, "r") as f:
Expand All @@ -2395,7 +2395,7 @@ def test_get_signed_policy_v4_invalid_field(self):
{"bucket": bucket_name},
["starts-with", "$Content-Type", "text/pla"],
],
expiration=datetime.datetime.now() + datetime.timedelta(hours=1),
expiration=datetime.datetime.utcnow() + datetime.timedelta(hours=1),
fields={"x-goog-random": "invalid_field", "content-type": "text/plain"},
)
with open(blob_name, "r") as f:
Expand Down

0 comments on commit 3465d08

Please sign in to comment.