diff options
Diffstat (limited to 'repository_test.go')
-rw-r--r-- | repository_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/repository_test.go b/repository_test.go index d377478..7a480f1 100644 --- a/repository_test.go +++ b/repository_test.go @@ -2,7 +2,7 @@ package git import ( . "gopkg.in/check.v1" - "gopkg.in/src-d/go-git.v2/internal" + "gopkg.in/src-d/go-git.v2/core" ) type SuiteRepository struct{} @@ -24,7 +24,7 @@ func (s *SuiteRepository) TestCommit(c *C) { c.Assert(err, IsNil) c.Assert(r.Pull("origin", "refs/heads/master"), IsNil) - hash := internal.NewHash("b8e471f58bcbca63b07bda20e428190409c2db47") + hash := core.NewHash("b8e471f58bcbca63b07bda20e428190409c2db47") commit, err := r.Commit(hash) c.Assert(err, IsNil) |