Skip to content

Commit

Permalink
fix time format
Browse files Browse the repository at this point in the history
  • Loading branch information
showjason committed Mar 30, 2024
1 parent 1e47204 commit 07c94fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubernetes/base/config/kube_config_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ def test_load_gcp_token_no_refresh(self):
def test_load_gcp_token_with_refresh(self):
def cred(): return None
cred.token = TEST_ANOTHER_DATA_BASE64
cred.expiry = datetime.datetime.now(tz=UTC)
cred.expiry = datetime.datetime.now(tz=UTC).replace(tzinfo=None)

loader = KubeConfigLoader(
config_dict=self.TEST_KUBE_CONFIG,
Expand Down

0 comments on commit 07c94fb

Please sign in to comment.