diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-06-04 09:55:42 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-06-04 09:55:42 +0900 |
commit | 634ccf4ca3c62330dbad09eb0a0869e9521bdc65 (patch) | |
tree | 41c6fe1e4653b3b54ef5438a3573aefc9a295e65 /t | |
parent | 2281b8a36288a13ba17eb908ee7be366843c84f5 (diff) | |
parent | b8f354f294185eac98bb6978f9f92ba11932558b (diff) | |
download | git-634ccf4ca3c62330dbad09eb0a0869e9521bdc65.tar.gz |
Merge branch 'sd/t3200-typofix'
Test fix.
* sd/t3200-typofix:
branch test: fix invalid config key access
Diffstat (limited to 't')
-rwxr-xr-x | t/t3200-branch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh index fe62e7c775..10f8f026ff 100755 --- a/t/t3200-branch.sh +++ b/t/t3200-branch.sh @@ -338,7 +338,7 @@ test_expect_success 'git branch -m s/s s should work when s/t is deleted' ' test_expect_success 'config information was renamed, too' ' test $(git config branch.s.dummy) = Hello && - test_must_fail git config branch.s/s/dummy + test_must_fail git config branch.s/s.dummy ' test_expect_success 'deleting a symref' ' |