From 31808c0b082268dc029903615e6912843f1b8cec Mon Sep 17 00:00:00 2001 From: Allen Petersen Date: Mon, 19 Nov 2018 11:35:24 -0800 Subject: [PATCH] Fix import from garyburd to gomodule --- example_test.go | 2 +- tempredis_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example_test.go b/example_test.go index 5a86efe..af29ea1 100644 --- a/example_test.go +++ b/example_test.go @@ -1,7 +1,7 @@ package tempredis import ( - "github.com/garyburd/redigo/redis" + "github.com/gomodule/redigo/redis" ) func ExampleUsage() { diff --git a/tempredis_test.go b/tempredis_test.go index 129eef1..7cd87ad 100644 --- a/tempredis_test.go +++ b/tempredis_test.go @@ -3,7 +3,7 @@ package tempredis import ( "testing" - "github.com/garyburd/redigo/redis" + "github.com/gomodule/redigo/redis" ) func TestServer(t *testing.T) {