From 2639452967e66c4840164c36817234d3e7c12ac1 Mon Sep 17 00:00:00 2001 From: =Corey Hulen Date: Mon, 23 Nov 2015 16:02:16 -0800 Subject: Fixing godep --- .../src/github.com/garyburd/redigo/internal/redistest/testdb.go | 2 +- Godeps/_workspace/src/github.com/garyburd/redigo/redis/conn_test.go | 2 +- Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool.go | 2 +- Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool_test.go | 2 +- Godeps/_workspace/src/github.com/garyburd/redigo/redis/pubsub_test.go | 2 +- Godeps/_workspace/src/github.com/garyburd/redigo/redis/reply_test.go | 2 +- Godeps/_workspace/src/github.com/garyburd/redigo/redis/scan_test.go | 2 +- Godeps/_workspace/src/github.com/garyburd/redigo/redis/script_test.go | 2 +- .../src/github.com/garyburd/redigo/redis/zpop_example_test.go | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) (limited to 'Godeps/_workspace/src/github.com/garyburd/redigo') diff --git a/Godeps/_workspace/src/github.com/garyburd/redigo/internal/redistest/testdb.go b/Godeps/_workspace/src/github.com/garyburd/redigo/internal/redistest/testdb.go index 3eb4bcd77..b6f205b7f 100644 --- a/Godeps/_workspace/src/github.com/garyburd/redigo/internal/redistest/testdb.go +++ b/Godeps/_workspace/src/github.com/garyburd/redigo/internal/redistest/testdb.go @@ -19,7 +19,7 @@ import ( "errors" "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/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. -- cgit v1.2.3-1-g7c22