]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t3404: fix indentation
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Sat, 7 Dec 2019 22:22:44 +0000 (22:22 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 9 Dec 2019 20:29:07 +0000 (12:29 -0800)
This test case was added in 66ae9a57b88 (t3404: rebase -i: demonstrate
short SHA-1 collision, 2013-08-23), and it is not indented in the way we
usually indent sub-shell code in our test cases these days.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t3404-rebase-interactive.sh

index bf0dc756d2e6ab5b8626c04d76f21d03fb712b28..ae6e55ce79ab67320a7dfb34efc6e677456e810d 100755 (executable)
@@ -1265,11 +1265,11 @@ test_expect_success SHA1 'short SHA-1 collide' '
        test_when_finished "reset_rebase && git checkout master" &&
        git checkout collide &&
        (
-       unset test_tick &&
-       test_tick &&
-       set_fake_editor &&
-       FAKE_COMMIT_MESSAGE="collide2 ac4f2ee" \
-       FAKE_LINES="reword 1 2" git rebase -i HEAD~2
+               unset test_tick &&
+               test_tick &&
+               set_fake_editor &&
+               FAKE_COMMIT_MESSAGE="collide2 ac4f2ee" \
+               FAKE_LINES="reword 1 2" git rebase -i HEAD~2
        )
 '