Skip to content

Commit

Permalink
Fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanseymour committed Jan 30, 2024
1 parent 15c6628 commit cbb088c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assertredis/asserts.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func LLen(t *testing.T, rp *redis.Pool, key string, expected int, msgAndArgs ...
}

// LRange asserts the result of calling LRANGE on the given key
func LRange(t *testing.T, rp *redis.Pool, key string, start, stop, expected []string, msgAndArgs ...any) bool {
func LRange(t *testing.T, rp *redis.Pool, key string, start, stop int, expected []string, msgAndArgs ...any) bool {
actual, err := redis.Strings(do(rp, "LRANGE", key, start, stop))

assert.NoError(t, err)
Expand Down

0 comments on commit cbb088c

Please sign in to comment.