Skip to content

Commit b42c7c5

Browse files
committed
Remove invalid test case of mistralclient
Delete 'test_ex_invalid_status_changing' negative test case, the reason of its working before is because there is a bug[1], which was fixed[2] several days ago. [1]: https://bugs.launchpad.net/mistral/+bug/1491541 [2]: https://review.openstack.org/219870 Change-Id: Ic50a8cce0a94da83a138bd5968fe55060e7065c0 Closes-Bug: #1493183
1 parent b1f700a commit b42c7c5

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

mistralclient/tests/functional/cli/v2/cli_tests_v2.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -928,15 +928,6 @@ def test_ex_create_missed_input(self):
928928
'execution-create empty',
929929
params=wf[1]['Name'])
930930

931-
def test_ex_invalid_status_changing(self):
932-
wf = self.workflow_create(self.wf_def)
933-
execution = self.execution_create(params=wf[0]['Name'])
934-
exec_id = self.get_value_of_field(execution, 'ID')
935-
self.assertRaises(exceptions.CommandFailed,
936-
self.mistral_admin,
937-
'execution-update',
938-
params='%s -s ERROR' % exec_id)
939-
940931
def test_ex_update_both_state_and_description(self):
941932
wf = self.workflow_create(self.wf_def)
942933
execution = self.execution_create(params=wf[0]['Name'])

0 commit comments

Comments
 (0)