X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=inline;f=t%2Ft0050-filesystem.sh;h=7edf49db3c37982a6d599a39b98ce60ceeb0039b;hb=acd3b9eca82e38950f94e4708b528b7dae09a7c8;hp=c5360e23d9ff1a5f31d42919eabdb2561f0d2e3d;hpb=6aad47dec7a72bb36c64afb6c43f4dbcaa49e7f9;p=git.git diff --git a/t/t0050-filesystem.sh b/t/t0050-filesystem.sh index c5360e23d..7edf49db3 100755 --- a/t/t0050-filesystem.sh +++ b/t/t0050-filesystem.sh @@ -43,7 +43,7 @@ test_expect_success "detection of case insensitive filesystem during repo init" else test_expect_success "detection of case insensitive filesystem during repo init" ' - ! git config --bool core.ignorecase >/dev/null || + test_must_fail git config --bool core.ignorecase >/dev/null || test $(git config --bool core.ignorecase) = false ' fi @@ -85,7 +85,7 @@ $test_case 'add (with different case)' ' rm camelcase && echo 1 >CamelCase && git add CamelCase && - test $(git-ls-files | grep -i camelcase | wc -l) = 1 + test $(git ls-files | grep -i camelcase | wc -l) = 1 '