diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2015-10-31 01:14:03 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2015-10-31 01:14:03 +0100 |
commit | c6349552c1c54ea114b92ae23fc840f68f6551f4 (patch) | |
tree | 6fbaf514ae9caf8241a0b9dfc3709d60942876c5 /remote_test.go | |
parent | fe1fc1aa7dca3e0f6e54ab17f0acfa45f269e58c (diff) | |
download | go-git-c6349552c1c54ea114b92ae23fc840f68f6551f4.tar.gz |
internal -> core
Diffstat (limited to 'remote_test.go')
-rw-r--r-- | remote_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remote_test.go b/remote_test.go index 6d8c2ff..6bfa139 100644 --- a/remote_test.go +++ b/remote_test.go @@ -1,8 +1,8 @@ package git import ( + "gopkg.in/src-d/go-git.v2/core" "gopkg.in/src-d/go-git.v2/formats/packfile" - "gopkg.in/src-d/go-git.v2/internal" . "gopkg.in/check.v1" ) @@ -49,7 +49,7 @@ func (s *SuiteRemote) TestFetchDefaultBranch(c *C) { pr := packfile.NewReader(reader) - storage := internal.NewRAWObjectStorage() + storage := core.NewRAWObjectStorage() _, err = pr.Read(storage) c.Assert(err, IsNil) c.Assert(storage.Objects, HasLen, 28) |