Skip to content

Commit f6bcd9a

Browse files
dschogitster
authored andcommitted
t9603: use tabs for indentation
This patch will let the new `check-whitespace` GitHub workflow be happy with the upcoming patch series that wants to search-and-replace `master` with `main` in t9603 and some other test scripts. Signed-off-by: Johannes Schindelin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent d98f272 commit f6bcd9a

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

t/t9603-cvsimport-patchsets.sh

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ test_description='git cvsimport testing for correct patchset estimation'
1717
setup_cvs_test_repository t9603
1818

1919
test_expect_failure PERL 'import with criss cross times on revisions' '
20-
21-
git cvsimport -p"-x" -C module-git module &&
22-
(cd module-git &&
23-
git log --pretty=format:%s > ../actual-master &&
24-
git log A~2..A --pretty="format:%s %ad" -- > ../actual-A &&
25-
echo "" >> ../actual-master &&
26-
echo "" >> ../actual-A
27-
) &&
28-
echo "Rev 4
20+
git cvsimport -p"-x" -C module-git module &&
21+
(
22+
cd module-git &&
23+
git log --pretty=format:%s > ../actual-master &&
24+
git log A~2..A --pretty="format:%s %ad" -- > ../actual-A &&
25+
echo "" >> ../actual-master &&
26+
echo "" >> ../actual-A
27+
) &&
28+
echo "Rev 4
2929
Rev 3
3030
Rev 2
3131
Rev 1" > expect-master &&
32-
test_cmp expect-master actual-master &&
32+
test_cmp expect-master actual-master &&
3333
34-
echo "Rev 5 Branch A Wed Mar 11 19:09:10 2009 +0000
34+
echo "Rev 5 Branch A Wed Mar 11 19:09:10 2009 +0000
3535
Rev 4 Branch A Wed Mar 11 19:03:52 2009 +0000" > expect-A &&
36-
test_cmp expect-A actual-A
36+
test_cmp expect-A actual-A
3737
'
3838

3939
test_done

0 commit comments

Comments
 (0)