From: Christian Couder Date: Fri, 26 Oct 2007 04:13:50 +0000 (+0200) Subject: Test suite: reset TERM to its previous value after testing. X-Git-Tag: v1.5.4-rc0~321 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=15387e3;p=git.git Test suite: reset TERM to its previous value after testing. Using konsole, I get no colored output at the end of "t7005-editor.sh" without this patch. Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- diff --git a/t/t7005-editor.sh b/t/t7005-editor.sh index 28643b0da..01cc0c02b 100755 --- a/t/t7005-editor.sh +++ b/t/t7005-editor.sh @@ -4,6 +4,8 @@ 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 @@ -88,4 +90,6 @@ do ' done +TERM="$OLD_TERM" + test_done