aboutsummaryrefslogtreecommitdiffstats
path: root/storage/seekable/internal/index
diff options
context:
space:
mode:
Diffstat (limited to 'storage/seekable/internal/index')
-rw-r--r--storage/seekable/internal/index/index.go6
-rw-r--r--storage/seekable/internal/index/index_test.go4
2 files changed, 5 insertions, 5 deletions
diff --git a/storage/seekable/internal/index/index.go b/storage/seekable/internal/index/index.go
index 8e041bd..4282f3e 100644
--- a/storage/seekable/internal/index/index.go
+++ b/storage/seekable/internal/index/index.go
@@ -4,9 +4,9 @@ import (
"fmt"
"io"
- "gopkg.in/src-d/go-git.v3/core"
- "gopkg.in/src-d/go-git.v3/formats/idxfile"
- "gopkg.in/src-d/go-git.v3/formats/packfile"
+ "gopkg.in/src-d/go-git.v4/core"
+ "gopkg.in/src-d/go-git.v4/formats/idxfile"
+ "gopkg.in/src-d/go-git.v4/formats/packfile"
)
// Index is a database of objects and their offset in a packfile.
diff --git a/storage/seekable/internal/index/index_test.go b/storage/seekable/internal/index/index_test.go
index 49b3a9d..4ddfc25 100644
--- a/storage/seekable/internal/index/index_test.go
+++ b/storage/seekable/internal/index/index_test.go
@@ -4,8 +4,8 @@ import (
"os"
"testing"
- "gopkg.in/src-d/go-git.v3/core"
- "gopkg.in/src-d/go-git.v3/formats/idxfile"
+ "gopkg.in/src-d/go-git.v4/core"
+ "gopkg.in/src-d/go-git.v4/formats/idxfile"
. "gopkg.in/check.v1"
)