Skip to content

Commit ffbd240

Browse files
fixing tox style issues
1 parent 9ffc03e commit ffbd240

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/CLI/modules/sshkey_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def test_print_key(self):
118118
{'id': 1234, 'label': 'label', 'notes': 'notes'})
119119

120120
def test_print_key_file(self):
121-
if(sys.platform.startswith("win")):
121+
if (sys.platform.startswith("win")):
122122
self.skipTest("Test doesn't work in Windows")
123123
with tempfile.NamedTemporaryFile() as sshkey_file:
124124
service = self.client['Security_Ssh_Key']

tests/CLI/modules/vs/vs_create_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ def test_create_vs_no_confirm(self, confirm_mock):
693693
self.assertEqual(result.exit_code, 2)
694694

695695
def test_create_vs_export(self):
696-
if(sys.platform.startswith("win")):
696+
if (sys.platform.startswith("win")):
697697
self.skipTest("Test doesn't work in Windows")
698698
with tempfile.NamedTemporaryFile() as config_file:
699699
result = self.run_command(['vs', 'create', '--hostname', 'TEST', '--export', config_file.name,

0 commit comments

Comments
 (0)