Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
guzzijones committed Jul 5, 2023
1 parent c9d2b51 commit 61e460f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions st2tests/integration/orquesta/test_wiring_error_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ def test_task_transition_error(self):
ex = self._execute_workflow("examples.orquesta-fail-task-transition")
ex = self._wait_for_completion(ex)
self.assertEqual(ex.status, ac_const.LIVEACTION_STATUS_FAILED)
self.assertDictEqual(ex.result, expected_output)
self.error_inspect(ex, expected_errors)

def test_task_publish_error(self):
Expand All @@ -181,6 +182,7 @@ def test_task_publish_error(self):
ex = self._wait_for_completion(ex)

self.assertEqual(ex.status, ac_const.LIVEACTION_STATUS_FAILED)
self.assertDictEqual(ex.result, expected_output)
self.error_inspect(ex, expected_errors)

def test_output_error(self):
Expand Down

0 comments on commit 61e460f

Please sign in to comment.