Browse Source

test suite: remove useless TERM cruft in "t7005-editor.sh"

In commit 15387e3 (Test suite: reset TERM to its previous value after
testing., 2007-10-26), I added a workaround to reset TERM to its previous
value before the "test_done" at the end of "t7005-editor.sh" because
otherwise "test_done" would have printed the test result with a bad TERM
env variable (this resulted in output with no color on konsole).

But since commit c2116a1 (test-lib: fix TERM to dumb for test
repeatability, 2008-03-06), colored output is printed in a subshell with
TERM reset to its original value so the earlier workaround is not needed
anymore.

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Christian Couder 17 years ago committed by Junio C Hamano
parent
commit
f2b3e3c722
  1. 4
      t/t7005-editor.sh

4
t/t7005-editor.sh

@ -4,8 +4,6 @@ test_description='GIT_EDITOR, core.editor, and stuff' @@ -4,8 +4,6 @@ test_description='GIT_EDITOR, core.editor, and stuff'

. ./test-lib.sh

OLD_TERM="$TERM"

for i in GIT_EDITOR core_editor EDITOR VISUAL vi
do
cat >e-$i.sh <<-EOF
@ -116,6 +114,4 @@ test_expect_success 'core.editor with a space' ' @@ -116,6 +114,4 @@ test_expect_success 'core.editor with a space' '

'

TERM="$OLD_TERM"

test_done

Loading…
Cancel
Save