From: John Keeping Date: Sun, 16 Jun 2013 14:18:15 +0000 (+0100) Subject: t7403: add missing && chaining X-Git-Tag: v1.8.4-rc0~107^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a82af0543a016e341f1efd689a60617b1029ae00;p=thirdparty%2Fgit.git t7403: add missing && chaining Signed-off-by: John Keeping Signed-off-by: Junio C Hamano --- diff --git a/t/t7403-submodule-sync.sh b/t/t7403-submodule-sync.sh index 38f6cc4bf0..bf90098a1a 100755 --- a/t/t7403-submodule-sync.sh +++ b/t/t7403-submodule-sync.sh @@ -174,7 +174,7 @@ test_expect_success '"git submodule sync" handles origin URL of the form foo/bar cd submodule && #actual foo/submodule test "$(git config remote.origin.url)" = "../foo/submodule" - ) + ) && ( cd submodule/sub-submodule && test "$(git config remote.origin.url)" != "../../foo/submodule" @@ -191,7 +191,7 @@ test_expect_success '"git submodule sync --recursive" propagates changes in orig cd submodule && #actual foo/submodule test "$(git config remote.origin.url)" = "../foo/submodule" - ) + ) && ( cd submodule/sub-submodule && test "$(git config remote.origin.url)" = "../../foo/submodule"