mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
t7406: simplify by using diff --name-only instead of diff --raw
We can get rid of some quoted tabs and make a few tests slightly easier to read and edit by just asking for the names of the files modified, since that's all these tests were interested in anyway. Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
0df90bdd12
commit
602813cff3
1 changed files with 5 additions and 5 deletions
|
@ -579,9 +579,9 @@ test_expect_success 'submodule update - update=none in .git/config' '
|
|||
git checkout master &&
|
||||
compare_head
|
||||
) &&
|
||||
git diff --raw | grep " submodule" &&
|
||||
git diff --name-only | grep ^submodule$ &&
|
||||
git submodule update &&
|
||||
git diff --raw | grep " submodule" &&
|
||||
git diff --name-only | grep ^submodule$ &&
|
||||
(cd submodule &&
|
||||
compare_head
|
||||
) &&
|
||||
|
@ -597,10 +597,10 @@ test_expect_success 'submodule update - update=none in .git/config but --checkou
|
|||
git checkout master &&
|
||||
compare_head
|
||||
) &&
|
||||
git diff --raw | grep " submodule" &&
|
||||
git diff --name-only | grep ^submodule$ &&
|
||||
git submodule update --checkout &&
|
||||
git diff --raw >out &&
|
||||
! grep " submodule" out &&
|
||||
git diff --name-only >out &&
|
||||
! grep ^submodule$ out &&
|
||||
(cd submodule &&
|
||||
test_must_fail compare_head
|
||||
) &&
|
||||
|
|
Loading…
Reference in a new issue