Skip to content

Commit b8f8916

Browse files
committed
Fix lint
1 parent a9fcce7 commit b8f8916

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pkg/ring/kv/dynamodb/dynamodb_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package dynamodb
33
import (
44
"context"
55
"fmt"
6-
util_log "github.com/cortexproject/cortex/pkg/util/log"
76
"strconv"
87
"testing"
98
"time"
@@ -30,7 +29,7 @@ func Test_TTLDisabled(t *testing.T) {
3029
}
3130

3231
func Test_newDynamodbKV(t *testing.T) {
33-
_, err := newDynamodbKV(Config{Region: "us-west-2", TableName: "TEST"}, util_log.Logger)
32+
_, err := newDynamodbKV(Config{Region: "us-west-2", TableName: "TEST"}, TestLogger{})
3433

3534
require.NoError(t, err)
3635
}

0 commit comments

Comments
 (0)