]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t7001: modernize subshell formatting
authorShubham Verma <shubhunic@gmail.com>
Thu, 11 Feb 2021 19:46:58 +0000 (01:16 +0530)
committerJunio C Hamano <gitster@pobox.com>
Thu, 11 Feb 2021 21:42:16 +0000 (13:42 -0800)
Some test use an old style for formatting subshells:

        (command &&
            ...

Update them to the modern style:

        (
            command &&
            ...

Signed-off-by: Shubham Verma <shubhunic@gmail.com>
Reviewed-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7001-mv.sh

index f63802442b310565edfdf16c8e910444a36addcb..a4a14a3b2e22172df1244226978cb19d0aa8062d 100755 (executable)
@@ -181,38 +181,42 @@ test_expect_success "Sergey Vlasov's test case" '
        git mv ab a
 '
 
-test_expect_success 'absolute pathname' '(
-       rm -fr mine &&
-       mkdir mine &&
-       cd mine &&
-       test_create_repo one &&
-       cd one &&
-       mkdir sub &&
-       >sub/file &&
-       git add sub/file &&
-
-       git mv sub "$(pwd)/in" &&
-       ! test -d sub &&
-       test -d in &&
-       git ls-files --error-unmatch in/file
-)'
-
-test_expect_success 'absolute pathname outside should fail' '(
-       rm -fr mine &&
-       mkdir mine &&
-       cd mine &&
-       out=$(pwd) &&
-       test_create_repo one &&
-       cd one &&
-       mkdir sub &&
-       >sub/file &&
-       git add sub/file &&
-
-       test_must_fail git mv sub "$out/out" &&
-       test -d sub &&
-       ! test -d ../in &&
-       git ls-files --error-unmatch sub/file
-)'
+test_expect_success 'absolute pathname' '
+       (
+               rm -fr mine &&
+               mkdir mine &&
+               cd mine &&
+               test_create_repo one &&
+               cd one &&
+               mkdir sub &&
+               >sub/file &&
+               git add sub/file &&
+
+               git mv sub "$(pwd)/in" &&
+               ! test -d sub &&
+               test -d in &&
+               git ls-files --error-unmatch in/file
+       )
+'
+
+test_expect_success 'absolute pathname outside should fail' '
+       (
+               rm -fr mine &&
+               mkdir mine &&
+               cd mine &&
+               out=$(pwd) &&
+               test_create_repo one &&
+               cd one &&
+               mkdir sub &&
+               >sub/file &&
+               git add sub/file &&
+
+               test_must_fail git mv sub "$out/out" &&
+               test -d sub &&
+               ! test -d ../in &&
+               git ls-files --error-unmatch sub/file
+       )
+'
 
 test_expect_success 'git mv to move multiple sources into a directory' '
        rm -fr .git && git init &&
@@ -503,14 +507,16 @@ test_expect_success 'moving a submodule in nested directories' '
 test_expect_success 'moving nested submodules' '
        git commit -am "cleanup commit" &&
        mkdir sub_nested_nested &&
-       (cd sub_nested_nested &&
+       (
+               cd sub_nested_nested &&
                touch nested_level2 &&
                git init &&
                git add . &&
                git commit -m "nested level 2"
        ) &&
        mkdir sub_nested &&
-       (cd sub_nested &&
+       (
+               cd sub_nested &&
                touch nested_level1 &&
                git init &&
                git add . &&