We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76d8fbd commit 3c71987Copy full SHA for 3c71987
config/kube_config_test.py
@@ -1290,14 +1290,14 @@ def test_load_kube_config_from_dict(self):
1290
client_configuration=actual)
1291
self.assertEqual(expected, actual)
1292
1293
- def test_load_kube_config_from_empty_file(self):
+ def test_load_kube_config_from_empty_file_like_object(self):
1294
config_file_like_object = io.StringIO()
1295
self.assertRaises(
1296
ConfigException,
1297
load_kube_config,
1298
config_file_like_object)
1299
1300
- def test_load_kube_config_from_empty_file_like_object(self):
+ def test_load_kube_config_from_empty_file(self):
1301
config_file = self._create_temp_file(
1302
yaml.safe_dump(None))
1303
0 commit comments