diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-09-14 11:46:28 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-09-14 11:46:31 -0700 |
commit | 971f9ea54313d189e6a79395b5a6e335101bd85a (patch) | |
tree | a72e52a90f2dbceca13b69d9776f99012df8b06b /t | |
parent | Merge branch 'gb/apply-comment-typofix' (diff) | |
parent | t7060: actually test "git diff-index --cached -M" (diff) | |
download | tgif-971f9ea54313d189e6a79395b5a6e335101bd85a.tar.xz |
Merge branch 'mp/t7060-diff-index-test'
Fix an old test that was doing the same thing as another one.
* mp/t7060-diff-index-test:
t7060: actually test "git diff-index --cached -M"
Diffstat (limited to 't')
-rwxr-xr-x | t/t7060-wtstatus.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7060-wtstatus.sh b/t/t7060-wtstatus.sh index 741ec08576..32d81765cb 100755 --- a/t/t7060-wtstatus.sh +++ b/t/t7060-wtstatus.sh @@ -106,7 +106,7 @@ test_expect_success 'git diff-index --cached -M shows 2 added + 1 unmerged' ' A THREE A TWO EOF - git diff-index --cached --name-status HEAD >actual && + git diff-index --cached -M --name-status HEAD >actual && test_cmp expected actual ' |