t0020-crlf: check the right file
In the test 'checkout with autocrlf=input' in 't0020-crlf.sh', one of the 'has_cr' checks looks at the non-existing file 'two' instead of 'dir/two'. The test still succeeds, without actually checking what it was supposed to, because this check is expected to fail anyway. As a minimal fix, fix the name of the file to be checked. Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
SZEDER Gábor committed
Aug 22, 2018 at 14:44 UTC
30612cb67090d34f880f67e4ca73f6a1247f1a95
1 file changed
+1
-1
t/t0020-crlf.sh
+1
-1
@@ -148,7 +148,7 @@ test_expect_success 'checkout with autocrlf=input' '
148
git config core.autocrlf input &&
149
git read-tree --reset -u HEAD &&
150
test_must_fail has_cr one &&
151
- test_must_fail has_cr two &&
151
+ test_must_fail has_cr dir/two &&
152
git update-index -- one dir/two &&
153
test "$one" = $(git hash-object --stdin <one) &&
154
test "$two" = $(git hash-object --stdin <dir/two) &&