diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-11 14:12:04 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-11 14:12:04 +0200 |
commit | c1e277a7ca75ff84741d75ad45e29a2ff3e633e3 (patch) | |
tree | 44949d811c21d38aa011a307a7d7716098b62370 /storage/memory | |
parent | 303cb32f7f36e39bbea80b4031be99cc33fea592 (diff) | |
download | go-git-c1e277a7ca75ff84741d75ad45e29a2ff3e633e3.tar.gz |
v3 -> v4
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 1720ebd..8c35360 100644 --- a/storage/memory/object.go +++ b/storage/memory/object.go @@ -4,7 +4,7 @@ import ( "bytes" "io/ioutil" - "gopkg.in/src-d/go-git.v3/core" + "gopkg.in/src-d/go-git.v4/core" ) // Object on memory core.Object implementation diff --git a/storage/memory/object_test.go b/storage/memory/object_test.go index 3271254..c252626 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.v3/core" + "gopkg.in/src-d/go-git.v4/core" ) func Test(t *testing.T) { TestingT(t) } diff --git a/storage/memory/storage.go b/storage/memory/storage.go index 84de980..62fd1b4 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.v3/core" + "gopkg.in/src-d/go-git.v4/core" ) var ErrUnsupportedObjectType = fmt.Errorf("unsupported object type") diff --git a/storage/memory/storage_test.go b/storage/memory/storage_test.go index 19f4476..200dbba 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.v3/core" + "gopkg.in/src-d/go-git.v4/core" ) type ObjectStorageSuite struct{} |