forked from TrueCloudLab/restic
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:
parent
d03460010f
commit
22147e1e02
5 changed files with 6 additions and 10 deletions
2
internal/cache/file_test.go
vendored
2
internal/cache/file_test.go
vendored
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue