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 bfa9681 commit 49cbb1dCopy full SHA for 49cbb1d
config/kube_config_test.py
@@ -1265,7 +1265,7 @@ def test_load_kube_config_from_file_like_object(self):
1265
#py3 (won't have unicode) vs py2 (requires it)
1266
try:
1267
unicode('')
1268
- config_file_like_object.write(unicode(yaml.safe_dump(self.TEST_KUBE_CONFIG)), errors='replace')
+ config_file_like_object.write(unicode(yaml.safe_dump(self.TEST_KUBE_CONFIG), errors='replace'))
1269
except NameError:
1270
config_file_like_object.write(yaml.safe_dump(self.TEST_KUBE_CONFIG))
1271
actual = FakeConfig()
0 commit comments