Skip to content

Commit fff531a

Browse files
Ramkishor ChaladiRamkishor Chaladi
authored andcommitted
removed '' and update to
1 parent 5411a8f commit fff531a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

SoftLayer/CLI/image/share_deny.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ def cli(env, identifier, account_id):
2020
shared_image = image_mgr.deny_share_image(image_id, account_id)
2121

2222
if shared_image:
23-
env.fout(f'Image template {account_id} was deny shared to account {identifier}.')
23+
env.fout(f"Image template {account_id} was deny shared to account {identifier}.")

tests/CLI/modules/image_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def test_share_without_id_account(self):
7272
def test_deny_share(self):
7373
result = self.run_command(['image', 'share-deny', '123456', '--account-id', '654321'])
7474
self.assert_no_fail(result)
75-
self.assertIn('Image template 123456 was deny shared to account 654321.', result.output)
75+
self.assertIn("Image template 123456 was deny shared to account 654321.", result.output)
7676

7777
def test_deny_share_without_id(self):
7878
result = self.run_command(['image', 'share-deny'])

0 commit comments

Comments
 (0)