Skip to content

Commit

Permalink
Fix broken integration test.
Browse files Browse the repository at this point in the history
It was simply checking the wrong condition.
  • Loading branch information
jmchilton committed Dec 24, 2016
1 parent f34bb5e commit a0aa70b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/integration/test_job_resubmission.py
Expand Up @@ -53,9 +53,9 @@ def test_condition_expressions(self):
"failure_state": "unknown_error"})

def test_condition_any_failure(self):
self._assert_job_fails(resource_parameters={"test_name": "test_condition_any_failure",
"initial_destination": "fail_first_any_failure",
"failure_state": "unknown_error"})
self._assert_job_passes(resource_parameters={"test_name": "test_condition_any_failure",
"initial_destination": "fail_first_any_failure",
"failure_state": "unknown_error"})

def test_condition_attempt(self):
self._assert_job_fails(resource_parameters={"test_name": "test_condition_attempt",
Expand Down

0 comments on commit a0aa70b

Please sign in to comment.