Skip to content

Commit 8d73349

Browse files
committed
Fix casing
1 parent f019f3d commit 8d73349

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/CLI/modules/user_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def test_create_user_no_confirm(self, confirm_mock):
168168
result = self.run_command(['user', 'create', 'test', '-e', '[email protected]', '-p', 'testword'])
169169
self.assertEqual(result.exit_code, 2)
170170

171-
@unittest.SkipIf(sys.version_info < (3, 6), "Secrets module only exists in version 3.6+")
171+
@unittest.skipIf(sys.version_info < (3, 6), "Secrets module only exists in version 3.6+")
172172
@mock.patch('secrets.choice')
173173
@mock.patch('SoftLayer.CLI.formatting.confirm')
174174
def test_create_user_generate_password_36(self, confirm_mock, secrets):

0 commit comments

Comments
 (0)