diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-05-19 16:45:35 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-05-19 16:45:35 +0900 |
commit | 8c59ba9a764f1ae1f8d176ea17c636183cfd7267 (patch) | |
tree | 5d3ae1da7adb0f2003518b0a85633b23a995240c /t | |
parent | Merge branch 'jc/set-packet-header-signature-fix' (diff) | |
parent | get_oid: handle NULL repo->index (diff) | |
download | tgif-8c59ba9a764f1ae1f8d176ea17c636183cfd7267.tar.xz |
Merge branch 'jk/get-oid-indexed-object-name'
The codepath to parse :<path> that obtains the object name for an
indexed object has been made more robust.
* jk/get-oid-indexed-object-name:
get_oid: handle NULL repo->index
Diffstat (limited to 't')
-rwxr-xr-x | t/t7411-submodule-config.sh | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/t/t7411-submodule-config.sh b/t/t7411-submodule-config.sh index fcc0fb82d8..ad28e93880 100755 --- a/t/t7411-submodule-config.sh +++ b/t/t7411-submodule-config.sh @@ -243,18 +243,14 @@ test_expect_success 'reading nested submodules config' ' ) ' -# When this test eventually passes, before turning it into -# test_expect_success, remember to replace the test_i18ngrep below with -# a "test_must_be_empty warning" to be sure that the warning is actually -# removed from the code. -test_expect_failure 'reading nested submodules config when .gitmodules is not in the working tree' ' +test_expect_success 'reading nested submodules config when .gitmodules is not in the working tree' ' test_when_finished "git -C super/submodule checkout .gitmodules" && (cd super && echo "./nested_submodule" >expect && rm submodule/.gitmodules && test-tool submodule-nested-repo-config \ submodule submodule.nested_submodule.url >actual 2>warning && - test_i18ngrep "nested submodules without %s in the working tree are not supported yet" warning && + test_must_be_empty warning && test_cmp expect actual ) ' |