summaryrefslogtreecommitdiff
path: root/t/t1300-repo-config.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2012-02-16 08:02:18 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-02-17 15:52:41 (GMT)
commit27370b1170fbd5859e9d88e91be9108e04b6725e (patch)
treee73744f7b724cb4be99f44012f7fa5525454432a /t/t1300-repo-config.sh
parentd7be1f142fd3e9ea812143e4281c84341ef5534d (diff)
downloadgit-27370b1170fbd5859e9d88e91be9108e04b6725e.zip
git-27370b1170fbd5859e9d88e91be9108e04b6725e.tar.gz
git-27370b1170fbd5859e9d88e91be9108e04b6725e.tar.bz2
t1300: add missing &&-chaining
Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t1300-repo-config.sh')
-rwxr-xr-xt/t1300-repo-config.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh
index 0690e0e..6de46bb 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
)