all: Minor cleanups

if x { return true } return false => return x

	fmt.Sprintf("%v", x) => fmt.Sprint(x) or x.String()

The fmt.Sprintf idiom is still used in the SecretString tests, where it
serves security hardening.
This commit is contained in:
greatroar 2022-10-16 10:30:59 +02:00
parent d03460010f
commit 22147e1e02
5 changed files with 6 additions and 10 deletions

View file

@ -97,7 +97,7 @@ func TestFiles(t *testing.T) {
}
for _, tpe := range tests {
t.Run(fmt.Sprintf("%v", tpe), func(t *testing.T) {
t.Run(tpe.String(), func(t *testing.T) {
ids := generateRandomFiles(t, tpe, c)
id := randomID(ids)