diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-03-27 10:59:21 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-03-27 10:59:22 -0700 |
commit | 980ee776383cacdf77dd79667daa2efcb0b5882d (patch) | |
tree | 844cdd1419722a6937ba7a23a554aa308e75e030 | |
parent | Merge branch 'jk/quote-env-path-list-component' (diff) | |
parent | t7406: correct test case for submodule-update initial population (diff) | |
download | tgif-980ee776383cacdf77dd79667daa2efcb0b5882d.tar.xz |
Merge branch 'sb/submodule-update-initial-runs-custom-script'
A test fix.
* sb/submodule-update-initial-runs-custom-script:
t7406: correct test case for submodule-update initial population
-rwxr-xr-x | t/t7406-submodule-update.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t7406-submodule-update.sh b/t/t7406-submodule-update.sh index 347857fa7c..4ac386d98b 100755 --- a/t/t7406-submodule-update.sh +++ b/t/t7406-submodule-update.sh @@ -442,11 +442,11 @@ test_expect_success 'submodule update - command in .git/config catches failure - ' test_expect_success 'submodule update - command run for initial population of submodule' ' - cat <<-\ EOF >expect + cat >expect <<-EOF && Execution of '\''false $submodulesha1'\'' failed in submodule path '\''submodule'\'' - EOF && + EOF rm -rf super/submodule && - test_must_fail git -C super submodule update >../actual && + test_must_fail git -C super submodule update 2>actual && test_cmp expect actual && git -C super submodule update --checkout ' |