diff --git a/config/kube_config_test.py b/config/kube_config_test.py index d6501a58..25508d8b 100644 --- a/config/kube_config_test.py +++ b/config/kube_config_test.py @@ -1380,15 +1380,6 @@ def test__get_kube_config_loader_dict_no_persist(self): config_dict=self.TEST_KUBE_CONFIG) self.assertIsNone(actual._config_persister) - def test__get_kube_config_loader_dict_persist(self): - expected = FakeConfig(host=TEST_HOST, - token=BEARER_TOKEN_FORMAT % TEST_DATA_BASE64) - actual = _get_kube_config_loader(config_dict=self.TEST_KUBE_CONFIG, - persist_config=True) - self.assertTrue(callable(actual._config_persister)) - self.assertEquals(actual._config_persister.__name__, "save_changes") - - class TestKubernetesClientConfiguration(BaseTestCase): # Verifies properties of kubernetes.client.Configuration. # These tests guard against changes to the upstream configuration class,