aboutsummaryrefslogtreecommitdiff
path: root/t/t0201-gettext-fallbacks.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2015-03-20 06:06:44 -0400
committerJunio C Hamano <gitster@pobox.com>2015-03-20 10:20:13 -0700
commit60687de5ba3eb90f8332fb1bcec73a2cb782c95c (patch)
tree33192f9dd985cd6ebc82726e4a4d4ce96cbcad3c /t/t0201-gettext-fallbacks.sh
parent8fb268720e8565885039e7491f4628974e2d66a2 (diff)
downloadgit-60687de5ba3eb90f8332fb1bcec73a2cb782c95c.tar.gz
git-60687de5ba3eb90f8332fb1bcec73a2cb782c95c.tar.xz
t: fix moderate &&-chain breakage
These are tests which are missing a link in their &&-chain, but in a way that probably does not effect the outcome of the test. Most of these are of the form: some_cmd >actual test_cmp expect actual The main point of the test is to verify the output, and a failure in some_cmd would probably be noticed by bogus output. But it is good for the tests to also confirm that "some_cmd" does not die unexpectedly after producing its output. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t0201-gettext-fallbacks.sh')
-rwxr-xr-xt/t0201-gettext-fallbacks.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t0201-gettext-fallbacks.sh b/t/t0201-gettext-fallbacks.sh
index 5d80a985f..00c6d3d9b 100755
--- a/t/t0201-gettext-fallbacks.sh
+++ b/t/t0201-gettext-fallbacks.sh
@@ -52,7 +52,7 @@ test_expect_success 'eval_gettext: our eval_gettext() fallback can interpolate v
cmdline="git am" &&
export cmdline;
printf "When you have resolved this problem, run git am --resolved." >expect &&
- eval_gettext "When you have resolved this problem, run \$cmdline --resolved." >actual
+ eval_gettext "When you have resolved this problem, run \$cmdline --resolved." >actual &&
test_i18ncmp expect actual
'
@@ -60,7 +60,7 @@ test_expect_success 'eval_gettext: our eval_gettext() fallback can interpolate v
cmdline="git am" &&
export cmdline;
printf "When you have resolved this problem, run \"git am --resolved\"." >expect &&
- eval_gettext "When you have resolved this problem, run \"\$cmdline --resolved\"." >actual
+ eval_gettext "When you have resolved this problem, run \"\$cmdline --resolved\"." >actual &&
test_i18ncmp expect actual
'