Skip to content

Commit

Permalink
kv/redis: fix redis tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mark committed Jul 6, 2021
1 parent 929ede5 commit 022ac51
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions kv/redis/redis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,7 @@ func makeRedisClient() store.Store {
}

func TestRedisStore(t *testing.T) {
container, err := test.NewRedisContainer()
if err != nil {
t.Fatal("failed to new REDIS container")
}
container := test.NewRedisContainer(test.LoadRedisOptions())
assert.NoError(t, container.Start())
defer container.Stop()
kv := makeRedisClient()
Expand Down

0 comments on commit 022ac51

Please sign in to comment.