Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Deluiggi <ddeluigg@amazon.com>
  • Loading branch information
danielblando committed Mar 29, 2024
1 parent a9fcce7 commit b1a1602
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/ring/kv/dynamodb/dynamodb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package dynamodb
import (
"context"
"fmt"
util_log "github.com/cortexproject/cortex/pkg/util/log"
"strconv"
"testing"
"time"
Expand All @@ -30,7 +29,7 @@ func Test_TTLDisabled(t *testing.T) {
}

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

require.NoError(t, err)
}
Expand Down

0 comments on commit b1a1602

Please sign in to comment.