diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-01-04 16:19:19 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-01-04 22:28:41 -0800 |
commit | ae74f7d2895121b0931c575173e81a35e8893995 (patch) | |
tree | 21765bb514f65c3ca75c1d2f94db630832363c73 | |
parent | t5531: do not assume the "matching" push is the default (diff) | |
download | tgif-ae74f7d2895121b0931c575173e81a35e8893995.tar.xz |
t7406: do not assume the "matching" push is the default
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t7406-submodule-update.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t7406-submodule-update.sh b/t/t7406-submodule-update.sh index feaec6cdf4..c675ce6297 100755 --- a/t/t7406-submodule-update.sh +++ b/t/t7406-submodule-update.sh @@ -565,14 +565,14 @@ test_expect_success 'submodule add places git-dir in superprojects git-dir recur git log > ../../../expected ) && git commit -m "added subsubmodule" && - git push + git push origin : ) && (cd .git/modules/deeper/submodule/modules/subsubmodule && git log > ../../../../../actual ) && git add deeper/submodule && git commit -m "update submodule" && - git push && + git push origin : && test_cmp actual expected ) ' |