From: Shubham Verma <shubhunic@xxxxxxxxx> In some tests there is not a proper spaces after opening paranthesis and before cd. So, Lets change the style for cd according to subshell. Signed-off-by: shubham verma <shubhunic@xxxxxxxxx> --- t/t7001-mv.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/t/t7001-mv.sh b/t/t7001-mv.sh index f63802442b..67585b7d94 100755 --- a/t/t7001-mv.sh +++ b/t/t7001-mv.sh @@ -503,14 +503,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 . && -- 2.25.1