Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tests/unit/parallel_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ function test_supports_wait_n_matches_running_bash_version() {
expected_rc=0
fi

bashunit::runner::_supports_wait_n
assert_same "$expected_rc" "$?"
local actual_rc=0
bashunit::runner::_supports_wait_n || actual_rc=$?
assert_same "$expected_rc" "$actual_rc"
}

function test_wait_for_job_slot_releases_when_background_job_finishes() {
Expand Down
Loading