summaryrefslogtreecommitdiff
path: root/t/t5611-clone-config.sh
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2020-04-11 13:40:22 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-04-11 21:24:40 (GMT)
commit176a66a748c18132ebb747553896b810993179a6 (patch)
treee79804507efbc57568864269635c968a8a8b4d31 /t/t5611-clone-config.sh
parent9814d0a4ad0f9670b5959939f38dd42f9a7d83b6 (diff)
downloadgit-176a66a748c18132ebb747553896b810993179a6.zip
git-176a66a748c18132ebb747553896b810993179a6.tar.gz
git-176a66a748c18132ebb747553896b810993179a6.tar.bz2
t: restrict `is_hidden` to be called only on Windows
The function won't work anywhere else, so let's mark it as an explicit bug if it is called on a non-Windows platform. Let's also rename the function to avoid cluttering the global namespace with an overly-generic function name. While at it, we also fix the code comment above that function: the lower-case `windows` refers to something different than `Windows`. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5611-clone-config.sh')
-rwxr-xr-xt/t5611-clone-config.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t5611-clone-config.sh b/t/t5611-clone-config.sh
index c861e12..8e0fd39 100755
--- a/t/t5611-clone-config.sh
+++ b/t/t5611-clone-config.sh
@@ -96,13 +96,13 @@ test_expect_success MINGW 'clone -c core.hideDotFiles' '
test_commit attributes .gitattributes "" &&
rm -rf child &&
git clone -c core.hideDotFiles=false . child &&
- ! is_hidden child/.gitattributes &&
+ ! test_path_is_hidden child/.gitattributes &&
rm -rf child &&
git clone -c core.hideDotFiles=dotGitOnly . child &&
- ! is_hidden child/.gitattributes &&
+ ! test_path_is_hidden child/.gitattributes &&
rm -rf child &&
git clone -c core.hideDotFiles=true . child &&
- is_hidden child/.gitattributes
+ test_path_is_hidden child/.gitattributes
'
test_done