Merge pull request #2272 from kavishdahekar/kavishdahekar-patch-1

fix: missing method invocation in kube_config_test.py
This commit is contained in:
Kubernetes Prow Robot 2024-08-30 23:30:44 +01:00 committed by GitHub
commit d8f35c7ef3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1396,7 +1396,7 @@ class TestKubeConfigLoader(BaseTestCase):
temp_file_path=tmp_path)
self.assertFalse(True if not os.listdir(tmp_path) else False)
self.assertEqual(expected, actual)
_cleanup_temp_files
_cleanup_temp_files()
def test_load_kube_config_from_empty_file_like_object(self):
config_file_like_object = io.StringIO()