Skip to content

Commit

Permalink
ran make (#846)
Browse files Browse the repository at this point in the history
* ran make

* fmt fmt fmt
  • Loading branch information
domgreen authored Feb 18, 2019
1 parent cde7a7e commit 0ceacc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/thanos/downsample.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package main
import (
"context"
"encoding/json"
"github.com/improbable-eng/thanos/pkg/component"
"os"
"path"
"path/filepath"
Expand All @@ -14,6 +13,7 @@ import (
"github.com/improbable-eng/thanos/pkg/block"
"github.com/improbable-eng/thanos/pkg/block/metadata"
"github.com/improbable-eng/thanos/pkg/compact/downsample"
"github.com/improbable-eng/thanos/pkg/component"
"github.com/improbable-eng/thanos/pkg/objstore"
"github.com/improbable-eng/thanos/pkg/objstore/client"
"github.com/improbable-eng/thanos/pkg/runutil"
Expand Down
2 changes: 1 addition & 1 deletion pkg/pool/pool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func TestBytesPool(t *testing.T) {
allocs := uint64(0)
wrapped := chunkPool.new
chunkPool.new = func(sz int) []byte {
allocs ++
allocs++
return wrapped(sz)
}
testutil.Equals(t, []int{10, 20, 40, 80}, chunkPool.sizes)
Expand Down

0 comments on commit 0ceacc9

Please sign in to comment.