Skip to content

Commit

Permalink
t0001-init: fix a file name
Browse files Browse the repository at this point in the history
Without this change, grep fails because it does not find the file
instead of because it does not find the text in the file.

Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Johannes Sixt authored and Junio C Hamano committed Aug 9, 2009
1 parent ea5b1f6 commit 7d53a07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/t0001-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ test_expect_success 'init creates a new deep directory' '
git init --bare --shared=0660 newdir/a/b/c &&
test -d newdir/a/b/c/refs &&
ls -ld newdir/a newdir/a/b > lsab.out &&
! grep -v "^drwxrw[sx]r-x" ls.out &&
! grep -v "^drwxrw[sx]r-x" lsab.out &&
ls -ld newdir/a/b/c > lsc.out &&
! grep -v "^drwxrw[sx]---" lsc.out
)
Expand Down

0 comments on commit 7d53a07

Please sign in to comment.