Jelajahi Sumber

all: Minor staticcheck fixes (#8939)

guangwu 2 tahun lalu
induk
melakukan
27aba3567b
3 mengubah file dengan 3 tambahan dan 6 penghapusan
  1. 1 3
      lib/db/meta.go
  2. 1 1
      lib/model/requests_test.go
  3. 1 2
      lib/versioner/trashcan_test.go

+ 1 - 3
lib/db/meta.go

@@ -391,9 +391,7 @@ func (m *metadataTracker) Snapshot() *countsMap {
 	for k, v := range m.indexes {
 		c.indexes[k] = v
 	}
-	for i := range m.counts.Counts {
-		c.counts.Counts[i] = m.counts.Counts[i]
-	}
+	copy(c.counts.Counts, m.counts.Counts)
 
 	return c
 }

+ 1 - 1
lib/model/requests_test.go

@@ -609,10 +609,10 @@ func TestRequestSymlinkWindows(t *testing.T) {
 
 func equalContents(fs fs.Filesystem, path string, contents []byte) error {
 	fd, err := fs.Open(path)
-	defer fd.Close()
 	if err != nil {
 		return err
 	}
+	defer fd.Close()
 	bs, err := io.ReadAll(fd)
 	if err != nil {
 		return err

+ 1 - 2
lib/versioner/trashcan_test.go

@@ -8,7 +8,6 @@ package versioner
 
 import (
 	"context"
-	"fmt"
 	"io"
 	"os"
 	"path/filepath"
@@ -227,7 +226,7 @@ func TestTrashcanCleanOut(t *testing.T) {
 		".stversions/remove/removesubdir/file1": true,
 	}
 
-	t.Run(fmt.Sprintf("trashcan versioner trashcan clean up"), func(t *testing.T) {
+	t.Run("trashcan versioner trashcan clean up", func(t *testing.T) {
 		oldTime := time.Now().Add(-8 * 24 * time.Hour)
 		for file, shouldRemove := range testcases {
 			fs.MkdirAll(filepath.Dir(file), 0777)