Skip to content

Commit cfaeba9

Browse files
caberoscaberos
authored andcommitted
fix the team code review comments
1 parent a8da6ec commit cfaeba9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/CLI/modules/ipsec_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,5 +555,5 @@ def test_ipsec_cancel(self):
555555

556556
mock = self.set_mock('SoftLayer_Billing_Item', 'cancelItem')
557557
mock.return_value = True
558-
result = self.run_command(['ipsec', 'cancel', '445', '--immediate', '--reason', 'test', '--comment', 'testcli'])
558+
result = self.run_command(['ipsec', 'cancel', '445', '--immediate', '--reason', 'test'])
559559
self.assert_no_fail(result)

tests/managers/ipsec_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,5 +323,5 @@ def test_order(self):
323323
def test_cancel_item(self):
324324
_mock = self.set_mock('SoftLayer_Billing_Item', 'cancelItem')
325325
_mock.return_value = True
326-
result = self.ipsec.cancel_item(443, True, 'test', 'test')
326+
result = self.ipsec.cancel_item(443, True, 'test')
327327
self.assertEqual(result, True)

0 commit comments

Comments
 (0)