diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/t7403-submodule-sync.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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" |