diff --git a/t/t9821-git-p4-path-variations.sh b/t/t9821-git-p4-path-variations.sh
index 81e46ac..5a26fec 100755
--- a/t/t9821-git-p4-path-variations.sh
+++ b/t/t9821-git-p4-path-variations.sh
@@ -45,7 +45,7 @@ test_expect_success 'Clone root' '
(
cd "$git" &&
git init . &&
- git config core.ignorecase false &&
+ test_config core.ignorecase false &&
git p4 clone --use-client-spec --destination="$git" //depot &&
# This method is used instead of "test -f" to ensure the case is
# checked even if the test is executed on case-insensitive file systems.
@@ -67,7 +67,7 @@ test_expect_success 'Clone root (ignorecase)' '
(
cd "$git" &&
git init . &&
- git config core.ignorecase true &&
+ test_config core.ignorecase true &&
git p4 clone --use-client-spec --destination="$git" //depot &&
# This method is used instead of "test -f" to ensure the case is
# checked even if the test is executed on case-insensitive file systems.
@@ -91,7 +91,7 @@ test_expect_success 'Clone root and ignore one file' '
(
cd "$git" &&
git init . &&
- git config core.ignorecase false &&
+ test_config core.ignorecase false &&
git p4 clone --use-client-spec --destination="$git" //depot &&
# We ignore one file in the client spec and all path cases change from
# "TO" to "to"!
@@ -113,7 +113,7 @@ test_expect_success 'Clone root and ignore one file (ignorecase)' '
(
cd "$git" &&
git init . &&
- git config core.ignorecase true &&
+ test_config core.ignorecase true &&
git p4 clone --use-client-spec --destination="$git" //depot &&
# We ignore one file in the client spec and all path cases change from
# "TO" to "to"!
@@ -133,7 +133,7 @@ test_expect_success 'Clone path' '
(
cd "$git" &&
git init . &&
- git config core.ignorecase false &&
+ test_config core.ignorecase false &&
git p4 clone --use-client-spec --destination="$git" //depot &&
cat >expect <<-\EOF &&
to/File2.txt
@@ -149,7 +149,7 @@ test_expect_success 'Clone path (ignorecase)' '
(
cd "$git" &&
git init . &&
- git config core.ignorecase true &&
+ test_config core.ignorecase true &&
git p4 clone --use-client-spec --destination="$git" //depot &&
cat >expect <<-\EOF &&
TO/File2.txt
@@ -180,7 +180,7 @@ test_expect_success 'Add a new file and clone path with new file (ignorecase)' '
(
cd "$git" &&
git init . &&
- git config core.ignorecase true &&
+ test_config core.ignorecase true &&
git p4 clone --use-client-spec --destination="$git" //depot &&
cat >expect <<-\EOF &&
to/File0.txt
--