diff options
author | Jeff King <peff@peff.net> | 2012-02-16 03:02:18 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-02-17 07:52:41 -0800 |
commit | 27370b1170fbd5859e9d88e91be9108e04b6725e (patch) | |
tree | e73744f7b724cb4be99f44012f7fa5525454432a | |
parent | docs/api-config: minor clarifications (diff) | |
download | tgif-27370b1170fbd5859e9d88e91be9108e04b6725e.tar.xz |
t1300: add missing &&-chaining
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t1300-repo-config.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh index 0690e0edf4..6de46bbd57 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 ) |