aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/format/idxfile
diff options
context:
space:
mode:
Diffstat (limited to 'plumbing/format/idxfile')
-rw-r--r--plumbing/format/idxfile/decoder.go4
-rw-r--r--plumbing/format/idxfile/decoder_test.go4
-rw-r--r--plumbing/format/idxfile/encoder.go2
-rw-r--r--plumbing/format/idxfile/encoder_test.go2
-rw-r--r--plumbing/format/idxfile/idxfile.go2
5 files changed, 7 insertions, 7 deletions
diff --git a/plumbing/format/idxfile/decoder.go b/plumbing/format/idxfile/decoder.go
index c1269a1..6618475 100644
--- a/plumbing/format/idxfile/decoder.go
+++ b/plumbing/format/idxfile/decoder.go
@@ -5,8 +5,8 @@ import (
"errors"
"io"
- "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/idxfile/decoder_test.go b/plumbing/format/idxfile/decoder_test.go
index 499762d..27aa59b 100644
--- a/plumbing/format/idxfile/decoder_test.go
+++ b/plumbing/format/idxfile/decoder_test.go
@@ -7,8 +7,8 @@ import (
. "gopkg.in/check.v1"
"github.com/src-d/go-git-fixtures"
- "srcd.works/go-git.v4/plumbing/format/packfile"
- "srcd.works/go-git.v4/storage/memory"
+ "gopkg.in/src-d/go-git.v4/plumbing/format/packfile"
+ "gopkg.in/src-d/go-git.v4/storage/memory"
)
func Test(t *testing.T) { TestingT(t) }
diff --git a/plumbing/format/idxfile/encoder.go b/plumbing/format/idxfile/encoder.go
index 374d053..71e1b3f 100644
--- a/plumbing/format/idxfile/encoder.go
+++ b/plumbing/format/idxfile/encoder.go
@@ -6,7 +6,7 @@ import (
"io"
"sort"
- "srcd.works/go-git.v4/utils/binary"
+ "gopkg.in/src-d/go-git.v4/utils/binary"
)
// Encoder writes Idxfile structs to an output stream.
diff --git a/plumbing/format/idxfile/encoder_test.go b/plumbing/format/idxfile/encoder_test.go
index 2804aee..fab87b3 100644
--- a/plumbing/format/idxfile/encoder_test.go
+++ b/plumbing/format/idxfile/encoder_test.go
@@ -6,7 +6,7 @@ import (
. "gopkg.in/check.v1"
"github.com/src-d/go-git-fixtures"
- "srcd.works/go-git.v4/plumbing"
+ "gopkg.in/src-d/go-git.v4/plumbing"
)
func (s *IdxfileSuite) TestEncode(c *C) {
diff --git a/plumbing/format/idxfile/idxfile.go b/plumbing/format/idxfile/idxfile.go
index b39295a..5a718f3 100644
--- a/plumbing/format/idxfile/idxfile.go
+++ b/plumbing/format/idxfile/idxfile.go
@@ -1,6 +1,6 @@
package idxfile
-import "srcd.works/go-git.v4/plumbing"
+import "gopkg.in/src-d/go-git.v4/plumbing"
const (
// VersionSupported is the only idx version supported.