aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/format/index
diff options
context:
space:
mode:
Diffstat (limited to 'plumbing/format/index')
-rw-r--r--plumbing/format/index/decoder.go4
-rw-r--r--plumbing/format/index/decoder_test.go4
-rw-r--r--plumbing/format/index/encoder.go2
-rw-r--r--plumbing/format/index/encoder_test.go2
-rw-r--r--plumbing/format/index/index.go4
5 files changed, 8 insertions, 8 deletions
diff --git a/plumbing/format/index/decoder.go b/plumbing/format/index/decoder.go
index 59581da..4bc5af1 100644
--- a/plumbing/format/index/decoder.go
+++ b/plumbing/format/index/decoder.go
@@ -10,8 +10,8 @@ import (
"strconv"
"time"
- "srcd.works/go-git.v4/plumbing"
- "srcd.works/go-git.v4/utils/binary"
+ "gopkg.in/src-d/go-git.v4/plumbing"
+ "gopkg.in/src-d/go-git.v4/utils/binary"
)
var (
diff --git a/plumbing/format/index/decoder_test.go b/plumbing/format/index/decoder_test.go
index 3a6e0d4..fd83ffb 100644
--- a/plumbing/format/index/decoder_test.go
+++ b/plumbing/format/index/decoder_test.go
@@ -3,8 +3,8 @@ package index
import (
"testing"
- "srcd.works/go-git.v4/plumbing"
- "srcd.works/go-git.v4/plumbing/filemode"
+ "gopkg.in/src-d/go-git.v4/plumbing"
+ "gopkg.in/src-d/go-git.v4/plumbing/filemode"
"github.com/src-d/go-git-fixtures"
. "gopkg.in/check.v1"
diff --git a/plumbing/format/index/encoder.go b/plumbing/format/index/encoder.go
index bdb10c1..d568f15 100644
--- a/plumbing/format/index/encoder.go
+++ b/plumbing/format/index/encoder.go
@@ -9,7 +9,7 @@ import (
"sort"
"time"
- "srcd.works/go-git.v4/utils/binary"
+ "gopkg.in/src-d/go-git.v4/utils/binary"
)
var (
diff --git a/plumbing/format/index/encoder_test.go b/plumbing/format/index/encoder_test.go
index a6a0ea2..f76fafe 100644
--- a/plumbing/format/index/encoder_test.go
+++ b/plumbing/format/index/encoder_test.go
@@ -6,7 +6,7 @@ import (
"time"
. "gopkg.in/check.v1"
- "srcd.works/go-git.v4/plumbing"
+ "gopkg.in/src-d/go-git.v4/plumbing"
)
func (s *IndexSuite) TestEncode(c *C) {
diff --git a/plumbing/format/index/index.go b/plumbing/format/index/index.go
index e706058..ee50efd 100644
--- a/plumbing/format/index/index.go
+++ b/plumbing/format/index/index.go
@@ -4,8 +4,8 @@ import (
"errors"
"time"
- "srcd.works/go-git.v4/plumbing"
- "srcd.works/go-git.v4/plumbing/filemode"
+ "gopkg.in/src-d/go-git.v4/plumbing"
+ "gopkg.in/src-d/go-git.v4/plumbing/filemode"
)
var (