diff options
Diffstat (limited to 'storage/memory')
-rw-r--r-- | storage/memory/object.go | 2 | ||||
-rw-r--r-- | storage/memory/object_test.go | 2 | ||||
-rw-r--r-- | storage/memory/storage.go | 2 | ||||
-rw-r--r-- | storage/memory/storage_test.go | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/storage/memory/object.go b/storage/memory/object.go index 7fee252..eda6ab7 100644 --- a/storage/memory/object.go +++ b/storage/memory/object.go @@ -4,7 +4,7 @@ import ( "bytes" "io" - "gopkg.in/src-d/go-git.v2/core" + "gopkg.in/src-d/go-git.v3/core" ) // Object on memory core.Object implementation diff --git a/storage/memory/object_test.go b/storage/memory/object_test.go index b606eb2..f9dd25d 100644 --- a/storage/memory/object_test.go +++ b/storage/memory/object_test.go @@ -5,7 +5,7 @@ import ( "testing" . "gopkg.in/check.v1" - "gopkg.in/src-d/go-git.v2/core" + "gopkg.in/src-d/go-git.v3/core" ) func Test(t *testing.T) { TestingT(t) } diff --git a/storage/memory/storage.go b/storage/memory/storage.go index 4c106cc..9bc1e7b 100644 --- a/storage/memory/storage.go +++ b/storage/memory/storage.go @@ -3,7 +3,7 @@ package memory import ( "fmt" - "gopkg.in/src-d/go-git.v2/core" + "gopkg.in/src-d/go-git.v3/core" ) var ErrUnsupportedObjectType = fmt.Errorf("unsupported object type") diff --git a/storage/memory/storage_test.go b/storage/memory/storage_test.go index 4059dfa..ba7e224 100644 --- a/storage/memory/storage_test.go +++ b/storage/memory/storage_test.go @@ -2,7 +2,7 @@ package memory import ( . "gopkg.in/check.v1" - "gopkg.in/src-d/go-git.v2/core" + "gopkg.in/src-d/go-git.v3/core" ) type ObjectStorageSuite struct{} |