summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/garyburd/redigo/redis
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/garyburd/redigo/redis')
-rw-r--r--Godeps/_workspace/src/github.com/garyburd/redigo/redis/conn_test.go2
-rw-r--r--Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool.go2
-rw-r--r--Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool_test.go2
-rw-r--r--Godeps/_workspace/src/github.com/garyburd/redigo/redis/pubsub_test.go2
-rw-r--r--Godeps/_workspace/src/github.com/garyburd/redigo/redis/reply_test.go2
-rw-r--r--Godeps/_workspace/src/github.com/garyburd/redigo/redis/scan_test.go2
-rw-r--r--Godeps/_workspace/src/github.com/garyburd/redigo/redis/script_test.go2
-rw-r--r--Godeps/_workspace/src/github.com/garyburd/redigo/redis/zpop_example_test.go2
8 files changed, 8 insertions, 8 deletions
diff --git a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/conn_test.go b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/conn_test.go
index 06a2c8fa7..24887cf03 100644
--- a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/conn_test.go
+++ b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/conn_test.go
@@ -25,7 +25,7 @@ import (
"testing"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
+ "github.com/garyburd/redigo/redis"
)
type testConn struct {
diff --git a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool.go b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool.go
index c29b35f81..d66ef84b6 100644
--- a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool.go
+++ b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool.go
@@ -25,7 +25,7 @@ import (
"sync"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/internal"
+ "github.com/garyburd/redigo/internal"
)
var nowFunc = time.Now // for testing
diff --git a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool_test.go b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool_test.go
index 89e46e08d..9419a128f 100644
--- a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool_test.go
+++ b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool_test.go
@@ -22,7 +22,7 @@ import (
"testing"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
+ "github.com/garyburd/redigo/redis"
)
type poolTestConn struct {
diff --git a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pubsub_test.go b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pubsub_test.go
index 05e60763c..a3ed84e68 100644
--- a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pubsub_test.go
+++ b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pubsub_test.go
@@ -20,7 +20,7 @@ import (
"sync"
"testing"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
+ "github.com/garyburd/redigo/redis"
)
func publish(channel, value interface{}) {
diff --git a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/reply_test.go b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/reply_test.go
index 83c0c7b98..2c774866d 100644
--- a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/reply_test.go
+++ b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/reply_test.go
@@ -19,7 +19,7 @@ import (
"reflect"
"testing"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
+ "github.com/garyburd/redigo/redis"
)
type valueError struct {
diff --git a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/scan_test.go b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/scan_test.go
index af1f2c2da..d364dff42 100644
--- a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/scan_test.go
+++ b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/scan_test.go
@@ -20,7 +20,7 @@ import (
"reflect"
"testing"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
+ "github.com/garyburd/redigo/redis"
)
var scanConversionTests = []struct {
diff --git a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/script_test.go b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/script_test.go
index 5d414ea59..42f3c0363 100644
--- a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/script_test.go
+++ b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/script_test.go
@@ -20,7 +20,7 @@ import (
"testing"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
+ "github.com/garyburd/redigo/redis"
)
func ExampleScript(c redis.Conn, reply interface{}, err error) {
diff --git a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/zpop_example_test.go b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/zpop_example_test.go
index 3e4bca418..1d86ee6ce 100644
--- a/Godeps/_workspace/src/github.com/garyburd/redigo/redis/zpop_example_test.go
+++ b/Godeps/_workspace/src/github.com/garyburd/redigo/redis/zpop_example_test.go
@@ -16,7 +16,7 @@ package redis_test
import (
"fmt"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
+ "github.com/garyburd/redigo/redis"
)
// zpop pops a value from the ZSET key using WATCH/MULTI/EXEC commands.