From e7fb8b9f43ed55ddba4db990ea15687229c94589 Mon Sep 17 00:00:00 2001 From: Chemaclass Date: Thu, 5 Dec 2024 23:42:14 +0100 Subject: [PATCH] docs: remove obsolete comments on bashunit_fail_test --- tests/acceptance/bashunit_fail_test.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/acceptance/bashunit_fail_test.sh b/tests/acceptance/bashunit_fail_test.sh index 821747a9..8bb6ca5e 100644 --- a/tests/acceptance/bashunit_fail_test.sh +++ b/tests/acceptance/bashunit_fail_test.sh @@ -25,31 +25,23 @@ function test_different_verbose_snapshots_matches() { } function test_bashunit_when_a_test_fail_simple_output_env() { - # shellcheck disable=SC2317 local test_file=./tests/acceptance/fixtures/test_bashunit_when_a_test_fail.sh - # shellcheck disable=SC2317 assert_match_snapshot "$(./bashunit --no-parallel --env "$TEST_ENV_FILE_SIMPLE" "$test_file")" - # shellcheck disable=SC2317 assert_general_error "$(./bashunit --no-parallel --env "$TEST_ENV_FILE_SIMPLE" "$test_file")" } function test_bashunit_when_a_test_fail_simple_output_option() { - # shellcheck disable=SC2317 local test_file=./tests/acceptance/fixtures/test_bashunit_when_a_test_fail.sh - # shellcheck disable=SC2317 assert_match_snapshot "$(./bashunit --no-parallel --env "$TEST_ENV_FILE" "$test_file" --simple)" - # shellcheck disable=SC2317 assert_general_error "$(./bashunit --no-parallel --env "$TEST_ENV_FILE" "$test_file" --simple)" } function test_bashunit_with_multiple_failing_tests() { local test_file=./tests/acceptance/fixtures/test_bashunit_with_multiple_failing_tests.sh - # shellcheck disable=SC2317 assert_match_snapshot "$(./bashunit --no-parallel --env "$TEST_ENV_FILE" "$test_file")" - # shellcheck disable=SC2317 assert_general_error "$(./bashunit --no-parallel --env "$TEST_ENV_FILE" "$test_file" --simple)" }