aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/config_test.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/config/config_test.go b/config/config_test.go
index 8301d294..8364b264 100644
--- a/config/config_test.go
+++ b/config/config_test.go
@@ -34,11 +34,7 @@ func gitConfigGetE(testRepo *testgit.TestRepo, key string) (string, error) {
//nolint:noctx
cmd := exec.Command("git", "config", "--get", key) //#nosec G204
cmd.Dir = testRepo.Dir()
-
- cmd.Env = append(os.Environ(),
- "GIT_CONFIG_GLOBAL=/dev/null",
- "GIT_CONFIG_SYSTEM=/dev/null",
- )
+ cmd.Env = testRepo.Env()
out, err := cmd.CombinedOutput()
return strings.TrimSpace(string(out)), err