t0205: drop redundant test
We check that a shell variable is non-empty, and then we check that it's equal to a particular value. Just checking the latter covers both cases. I suspect the original was trying to give better output when the test fails, but using "-x" covers that these days. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Jeff King committed
Feb 6, 2018 at 03:43 UTC
1cdc62f6f16e6dae4343824f08286015c8c4b9c2
1 file changed
-4
t/t0205-gettext-poison.sh
-4
@@ -7,10 +7,6 @@ test_description='Gettext Shell poison'
7
8
. ./lib-gettext.sh
9
10
-test_expect_success GETTEXT_POISON "sanity: \$GIT_INTERNAL_GETTEXT_SH_SCHEME is set (to $GIT_INTERNAL_GETTEXT_SH_SCHEME)" '
11
- test -n "$GIT_INTERNAL_GETTEXT_SH_SCHEME"
12
-'
13
-
10
test_expect_success GETTEXT_POISON 'sanity: $GIT_INTERNAL_GETTEXT_SH_SCHEME" is poison' '
11
test "$GIT_INTERNAL_GETTEXT_SH_SCHEME" = "poison"
12
'