Skip to content
This repository was archived by the owner on Mar 13, 2022. It is now read-only.

Commit 3c71987

Browse files
committed
fix typo in test file
1 parent 76d8fbd commit 3c71987

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/kube_config_test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1290,14 +1290,14 @@ def test_load_kube_config_from_dict(self):
12901290
client_configuration=actual)
12911291
self.assertEqual(expected, actual)
12921292

1293-
def test_load_kube_config_from_empty_file(self):
1293+
def test_load_kube_config_from_empty_file_like_object(self):
12941294
config_file_like_object = io.StringIO()
12951295
self.assertRaises(
12961296
ConfigException,
12971297
load_kube_config,
12981298
config_file_like_object)
12991299

1300-
def test_load_kube_config_from_empty_file_like_object(self):
1300+
def test_load_kube_config_from_empty_file(self):
13011301
config_file = self._create_temp_file(
13021302
yaml.safe_dump(None))
13031303
self.assertRaises(

0 commit comments

Comments
 (0)