Skip to content
This repository was archived by the owner on Mar 13, 2022. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit de9195c

Browse files
author
Zac Pustejovsky
committedApr 5, 2018
is this it?
1 parent 9843bd7 commit de9195c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎config/kube_config_test.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,18 @@
4242
def _base64(string):
4343
return base64.encodestring(string.encode()).decode()
4444

45+
4546
def _format_expiry_datetime(dt):
4647
return dt.strftime(EXPIRY_DATETIME_FORMAT)
4748

49+
4850
def _get_expiry(loader):
4951
expired_gcp_conf = (item for item in loader._config.value.get("users")
5052
if item.get("name") == "expired_gcp")
5153
return next(expired_gcp_conf).get("user").get("auth-provider") \
5254
.get("config").get("expiry")
5355

56+
5457
def _raise_exception(st):
5558
raise Exception(st)
5659

@@ -208,11 +211,11 @@ class TestConfigNode(BaseTestCase):
208211
"value": {"key1", "test"}},
209212
{"name": "test_name3", "value": [1, 2, 3]}],
210213
"with_names_dup": [
211-
{"name": "test_name","value": "test_value"},
214+
{"name": "test_name", "value": "test_value"},
212215
{"name": "test_name",
213216
"value": {"key1", "test"}},
214217
{"name": "test_name3", "value": [1, 2, 3]}
215-
]}
218+
]}
216219

217220
def setUp(self):
218221
super(TestConfigNode, self).setUp()

0 commit comments

Comments
 (0)
This repository has been archived.