It complainted: ``` ./completions_test.go:3730:37: (*testing.common).Errorf format %q has arg directive of wrong type github.com/spf13/cobra.ShellCompDirective ``` It looks like [golang 1.26 changed "%q" behavior with int type](https://github.com/golang/go/issues/78486). Surely modifying %q to %d lets the test passed.
It complainted:
It looks like golang 1.26 changed "%q" behavior with int type. Surely modifying %q to %d lets the test passed.