t9104-git-svn-follow-parent: modernize test format

Some tests still use the old format with four spaces indentation.
Standardize the tests to the new format with tab indentation.

Signed-off-by: John Cai <johncai86@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
John Cai
2023-05-20 16:13:56 +00:00
committed by Junio C Hamano
parent be1fce6dae
commit 7d7097bf59

View File

@ -51,7 +51,7 @@ test_expect_success 'init and fetch from one svn-remote' '
= "$(git rev-parse --verify refs/remotes/svn/thunk~1)" && = "$(git rev-parse --verify refs/remotes/svn/thunk~1)" &&
git cat-file blob refs/remotes/svn/thunk:readme >actual && git cat-file blob refs/remotes/svn/thunk:readme >actual &&
test "$(sed -n -e "3p" actual)" = goodbye test "$(sed -n -e "3p" actual)" = goodbye
' '
test_expect_success 'follow deleted parent' ' test_expect_success 'follow deleted parent' '
(svn_cmd cp -m "resurrecting trunk as junk" \ (svn_cmd cp -m "resurrecting trunk as junk" \
@ -65,7 +65,7 @@ test_expect_success 'follow deleted parent' '
test -z "$(git diff svn/junk svn/trunk)" && test -z "$(git diff svn/junk svn/trunk)" &&
test "$(git merge-base svn/junk svn/trunk)" \ test "$(git merge-base svn/junk svn/trunk)" \
= "$(git rev-parse svn/trunk)" = "$(git rev-parse svn/trunk)"
' '
test_expect_success 'follow larger parent' ' test_expect_success 'follow larger parent' '
mkdir -p import/trunk/thunk/bump/thud && mkdir -p import/trunk/thunk/bump/thud &&
@ -85,7 +85,7 @@ test_expect_success 'follow larger parent' '
refs/remotes/larger-parent \ refs/remotes/larger-parent \
refs/remotes/larger)" = \ refs/remotes/larger)" = \
"$(git rev-parse refs/remotes/larger)" "$(git rev-parse refs/remotes/larger)"
' '
test_expect_success 'follow higher-level parent' ' test_expect_success 'follow higher-level parent' '
svn mkdir -m "follow higher-level parent" "$svnrepo"/blob && svn mkdir -m "follow higher-level parent" "$svnrepo"/blob &&