From: Jeff King Date: Thu, 16 Feb 2012 08:02:18 +0000 (-0500) Subject: t1300: add missing &&-chaining X-Git-Tag: v1.7.10-rc0~52^2~7 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=27370b1170fbd5859e9d88e91be9108e04b6725e;p=git.git t1300: add missing &&-chaining Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh index 0690e0edf..6de46bbd5 100755 --- a/t/t1300-repo-config.sh +++ b/t/t1300-repo-config.sh @@ -451,7 +451,7 @@ test_expect_success 'refer config from subdirectory' ' mkdir x && ( cd x && - echo strasse >expect + echo strasse >expect && git config --get --file ../other-config ein.bahn >actual && test_cmp expect actual )