diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-06-23 11:04:14 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-06-23 13:10:20 -0700 |
commit | 229a95aafa77b583b46a3156b4fad469c264ddfd (patch) | |
tree | 6f6aa4f9ed3e8b32740de227e82bb55358dde7a9 | |
parent | d426430e6ec2a05bf0a4ee88c319dd6072908504 (diff) | |
download | git-229a95aafa77b583b46a3156b4fad469c264ddfd.tar.gz git-229a95aafa77b583b46a3156b4fad469c264ddfd.tar.xz |
t0027: do not use an empty string as a pathspec element
In an upcoming update, we will finally make an empty string illegal
as an element in a pathspec; it traditionally meant the same as ".",
i.e. include everything, so update this test that passes "" to pass
a dot instead.
At this point in the test sequence, there is no modified path that
need to be further added before committing; the working tree is
empty except for .gitattributes which was just added to the index.
So we could instead pass no pathspec, but this is a conversion more
faithful to the original.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t0027-auto-crlf.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0027-auto-crlf.sh b/t/t0027-auto-crlf.sh index 93725895a..e41c9b3bb 100755 --- a/t/t0027-auto-crlf.sh +++ b/t/t0027-auto-crlf.sh @@ -322,7 +322,7 @@ test_expect_success 'setup master' ' echo >.gitattributes && git checkout -b master && git add .gitattributes && - git commit -m "add .gitattributes" "" && + git commit -m "add .gitattributes" . && printf "\$Id: 0000000000000000000000000000000000000000 \$\nLINEONE\nLINETWO\nLINETHREE" >LF && printf "\$Id: 0000000000000000000000000000000000000000 \$\r\nLINEONE\r\nLINETWO\r\nLINETHREE" >CRLF && printf "\$Id: 0000000000000000000000000000000000000000 \$\nLINEONE\r\nLINETWO\nLINETHREE" >CRLF_mix_LF && |