aboutsummaryrefslogtreecommitdiff
path: root/internal/testgit/command.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-06-14 01:46:22 +0000
committerGravatar Runxi Yu2026-06-14 01:46:22 +0000
commitfb5db2f90947300cd1e1f188c1a23b2bf123a9ce (patch)
tree90f9154aba741e8fa83b0b14fa5370a5dfb26355 /internal/testgit/command.go
parentobject/store/{mixed,pack}: MRU interval 48 (diff)
internal/testgit: Current style doesn't call for explaining nolints this way anymore
Diffstat (limited to 'internal/testgit/command.go')
-rw-r--r--internal/testgit/command.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/testgit/command.go b/internal/testgit/command.go
index db874bd1..4e696ece 100644
--- a/internal/testgit/command.go
+++ b/internal/testgit/command.go
@@ -15,7 +15,7 @@ func (repo *Repo) command(
) *exec.Cmd {
tb.Helper()
- cmd := exec.CommandContext(tb.Context(), command, args...) //nolint:gosec // Test helper runs caller-selected commands.
+ cmd := exec.CommandContext(tb.Context(), command, args...) //nolint:gosec
cmd.Dir = repo.path
cmd.Env = repo.env