Skip to content

Commit

Permalink
Use the new redigo import path
Browse files Browse the repository at this point in the history
The repository at github.com/garyburd is now a readonly snapshot of
v1.6.0. The 2.0.0 version bump seems to only be about reflecting the new
repository location in the internal import paths.
  • Loading branch information
pierreprinetti committed May 9, 2018
1 parent f9717c0 commit f374543
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion cmd_connection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package miniredis
import (
"testing"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

func TestAuth(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion cmd_generic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

// Test EXPIRE. Keys with an expiration are called volatile in Redis parlance.
Expand Down
2 changes: 1 addition & 1 deletion cmd_hash_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"testing"
"time"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

// Test Hash.
Expand Down
2 changes: 1 addition & 1 deletion cmd_list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

func setup(t *testing.T) (*Miniredis, redis.Conn, func()) {
Expand Down
2 changes: 1 addition & 1 deletion cmd_scripting_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package miniredis
import (
"testing"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

func TestEval(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion cmd_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package miniredis
import (
"testing"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

// Test DBSIZE, FLUSHDB, and FLUSHALL.
Expand Down
2 changes: 1 addition & 1 deletion cmd_set_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"sort"
"testing"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

// Test SADD / SMEMBERS.
Expand Down
2 changes: 1 addition & 1 deletion cmd_sorted_set_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"math"
"testing"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

// Test ZADD / ZCARD / ZRANK / ZREVRANK.
Expand Down
2 changes: 1 addition & 1 deletion cmd_string_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

// Test simple GET/SET keys
Expand Down
2 changes: 1 addition & 1 deletion cmd_transactions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package miniredis
import (
"testing"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

func TestMulti(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"time"

"github.com/alicebob/miniredis"
"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

func Example() {
Expand Down
2 changes: 1 addition & 1 deletion lua.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package miniredis

import (
redigo "github.com/garyburd/redigo/redis"
redigo "github.com/gomodule/redigo/redis"
"github.com/yuin/gopher-lua"

"github.com/alicebob/miniredis/server"
Expand Down
2 changes: 1 addition & 1 deletion miniredis.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"sync"
"time"

redigo "github.com/garyburd/redigo/redis"
redigo "github.com/gomodule/redigo/redis"

"github.com/alicebob/miniredis/server"
)
Expand Down
2 changes: 1 addition & 1 deletion miniredis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

// Test starting/stopping a server
Expand Down

0 comments on commit f374543

Please sign in to comment.