Skip to content

Commit

Permalink
Merge pull request #2272 from kavishdahekar/kavishdahekar-patch-1
Browse files Browse the repository at this point in the history
fix: missing method invocation in kube_config_test.py
  • Loading branch information
k8s-ci-robot authored Aug 30, 2024
2 parents 9b3c83c + dac8a5c commit d8f35c7
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 @@ -1396,7 +1396,7 @@ def test_load_kube_config_from_dict_with_temp_file_path(self):
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()
Expand Down

0 comments on commit d8f35c7

Please sign in to comment.