Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSZEDER Gábor <szeder.dev@gmail.com>2022-09-05 21:50:03 +0300
committerJunio C Hamano <gitster@pobox.com>2022-09-07 22:06:12 +0300
commit9a22b4d907ebca52352997fe0e69714db247bb4c (patch)
tree5d9e8f0ec57e738cf8cf47932bba86dc597629c7 /t/t0040-parse-options.sh
parent8f9d80f6c06369b563c76ec46c462e740a1a2cf0 (diff)
t0040-parse-options: remove leftover debugging
Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t0040-parse-options.sh')
-rwxr-xr-xt/t0040-parse-options.sh2
1 files changed, 0 insertions, 2 deletions
diff --git a/t/t0040-parse-options.sh b/t/t0040-parse-options.sh
index b19b8d3486..5cc62306e3 100755
--- a/t/t0040-parse-options.sh
+++ b/t/t0040-parse-options.sh
@@ -500,7 +500,6 @@ test_expect_success 'KEEP_UNKNOWN_OPT works' '
test_expect_success 'NO_INTERNAL_HELP works for -h' '
test_expect_code 129 test-tool parse-options-flags --no-internal-help cmd -h 2>err &&
- cat err &&
grep "^error: unknown switch \`h$SQ" err &&
grep "^usage: " err
'
@@ -509,7 +508,6 @@ for help_opt in help help-all
do
test_expect_success "NO_INTERNAL_HELP works for --$help_opt" "
test_expect_code 129 test-tool parse-options-flags --no-internal-help cmd --$help_opt 2>err &&
- cat err &&
grep '^error: unknown option \`'$help_opt\' err &&
grep '^usage: ' err
"