Skip to content

Commit 52a3bdc

Browse files
committed
removing load from dict presist from the added test cases.
1 parent 6c32737 commit 52a3bdc

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

config/kube_config_test.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1380,15 +1380,6 @@ def test__get_kube_config_loader_dict_no_persist(self):
13801380
config_dict=self.TEST_KUBE_CONFIG)
13811381
self.assertIsNone(actual._config_persister)
13821382

1383-
def test__get_kube_config_loader_dict_persist(self):
1384-
expected = FakeConfig(host=TEST_HOST,
1385-
token=BEARER_TOKEN_FORMAT % TEST_DATA_BASE64)
1386-
actual = _get_kube_config_loader(config_dict=self.TEST_KUBE_CONFIG,
1387-
persist_config=True)
1388-
self.assertTrue(callable(actual._config_persister))
1389-
self.assertEquals(actual._config_persister.__name__, "save_changes")
1390-
1391-
13921383
class TestKubernetesClientConfiguration(BaseTestCase):
13931384
# Verifies properties of kubernetes.client.Configuration.
13941385
# These tests guard against changes to the upstream configuration class,

0 commit comments

Comments
 (0)