File tree 2 files changed +6
-7
lines changed
2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 19
19
import json
20
20
import logging
21
21
import os
22
- import io
23
22
import platform
24
23
import subprocess
25
24
import tempfile
Original file line number Diff line number Diff line change 14
14
15
15
import base64
16
16
import datetime
17
+ import io
17
18
import json
18
19
import os
19
- import io
20
20
import shutil
21
21
import tempfile
22
22
import unittest
@@ -1272,13 +1272,13 @@ def test_load_kube_config_from_file_like_object(self):
1272
1272
errors = 'replace' ))
1273
1273
except NameError :
1274
1274
config_file_like_object .write (
1275
- yaml .safe_dump (
1276
- self .TEST_KUBE_CONFIG ))
1275
+ yaml .safe_dump (
1276
+ self .TEST_KUBE_CONFIG ))
1277
1277
actual = FakeConfig ()
1278
1278
load_kube_config (
1279
- config_file = config_file_like_object ,
1280
- context = "simple_token" ,
1281
- client_configuration = actual )
1279
+ config_file = config_file_like_object ,
1280
+ context = "simple_token" ,
1281
+ client_configuration = actual )
1282
1282
self .assertEqual (expected , actual )
1283
1283
1284
1284
def test_load_kube_config_from_dict (self ):
You can’t perform that action at this time.
0 commit comments