Fix lint: mark unused test parameter with underscore

This commit is contained in:
Steve Yegge
2025-10-24 21:34:56 -07:00
parent 1a9258ce4f
commit 0f49d30535

View File

@@ -62,7 +62,7 @@ func TestIsNumeric(t *testing.T) {
} }
} }
func TestGetWorktreeGitDir(t *testing.T) { func TestGetWorktreeGitDir(_ *testing.T) {
gitDir := getWorktreeGitDir() gitDir := getWorktreeGitDir()
// Just verify it doesn't panic and returns a string // Just verify it doesn't panic and returns a string
_ = gitDir _ = gitDir