Add missing whitespace between 'test_expect_success' and test case description for last test. Without this, we get: t4002-diff-basic.sh: line 412: test_expect_successdiff can read from stdin: command not found Signed-off-by: Andreas Herrmann <aherrmann@xxxxxxx> --- t/t4002-diff-basic.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/t/t4002-diff-basic.sh b/t/t4002-diff-basic.sh index d524d4057d..e6b6739426 100755 --- a/t/t4002-diff-basic.sh +++ b/t/t4002-diff-basic.sh @@ -401,9 +401,10 @@ test_expect_success 'diff-tree B A == diff-tree -R A B' ' test_expect_success 'diff-tree -r B A == diff-tree -r -R A B' ' git diff-tree -r $tree_B $tree_A >.test-a && git diff-tree -r -R $tree_A $tree_B >.test-b && - cmp -s .test-a .test-b' + cmp -s .test-a .test-b +' -test_expect_success'diff can read from stdin' ' +test_expect_success 'diff can read from stdin' ' test_must_fail git diff --no-index -- MN - < NN | grep -v "^index" | sed "s#/-#/NN#" >.test-a && test_must_fail git diff --no-index -- MN NN | -- 2.41.0