t9104: fix test for following larger parents
[gitweb.git] / t / t3001-ls-files-others-exclude.sh
index f0421c09c700bc1203d2ef563c54157e94c83b33..3fc484e8c3f8d910f02e409baf7bf1d5682b4f2f 100755 (executable)
@@ -115,7 +115,7 @@ EOF
 
 git config core.excludesFile excludes-file
 
-git status | grep "^#  " > output
+git -c status.displayCommentPrefix=true status | grep "^#      " > output
 
 cat > expect << EOF
 #      .gitignore
@@ -294,7 +294,7 @@ one/a.1
 one/two/a.1
 three/a.1
 EOF
-       git ls-files -o -i --exclude "**/a.1" >actual
+       git ls-files -o -i --exclude "**/a.1" >actual &&
        test_cmp expect actual
 '