diff --git a/go/store/datas/pull/puller_test.go b/go/store/datas/pull/puller_test.go index 350a280711a..71d14e7496d 100644 --- a/go/store/datas/pull/puller_test.go +++ b/go/store/datas/pull/puller_test.go @@ -84,7 +84,8 @@ func TestPuller(t *testing.T) { statsCh := make(chan Stats) go func() { - for _ = range statsCh {} + for _ = range statsCh { + } }() dir := filepath.Join(os.TempDir(), uuid.New().String()) diff --git a/go/store/nbs/ghost_store.go b/go/store/nbs/ghost_store.go index 9458fb7b96c..a3e8be1232e 100644 --- a/go/store/nbs/ghost_store.go +++ b/go/store/nbs/ghost_store.go @@ -23,8 +23,8 @@ import ( "os" "path/filepath" - "github.com/dolthub/dolt/go/store/constants" "github.com/dolthub/dolt/go/store/chunks" + "github.com/dolthub/dolt/go/store/constants" "github.com/dolthub/dolt/go/store/hash" )