diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2015-10-26 01:22:54 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2015-10-26 01:22:54 +0100 |
commit | 688e802814f791a8723874dc88437bd8d140e103 (patch) | |
tree | aeaf5e435e5802d9c8ae855a88128a49bc9768c8 /clients/http/git_upload_pack_test.go | |
parent | 9a44cd8ccff143a112436c38bfe5581e74b68f07 (diff) | |
download | go-git-688e802814f791a8723874dc88437bd8d140e103.tar.gz |
objects: using readers from internal.Object
Diffstat (limited to 'clients/http/git_upload_pack_test.go')
-rw-r--r-- | clients/http/git_upload_pack_test.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/clients/http/git_upload_pack_test.go b/clients/http/git_upload_pack_test.go index 603cd1b..7234766 100644 --- a/clients/http/git_upload_pack_test.go +++ b/clients/http/git_upload_pack_test.go @@ -5,6 +5,7 @@ import ( . "gopkg.in/check.v1" "gopkg.in/src-d/go-git.v2/clients/common" + "gopkg.in/src-d/go-git.v2/internal" ) type SuiteRemote struct{} @@ -41,7 +42,9 @@ func (s *SuiteRemote) TestFetch(c *C) { c.Assert(r.Connect(RepositoryFixture), IsNil) reader, err := r.Fetch(&common.GitUploadPackRequest{ - Want: []string{"6ecf0ef2c2dffb796033e5a02219af86ec6584e5"}, + Want: []internal.Hash{ + internal.NewHash("6ecf0ef2c2dffb796033e5a02219af86ec6584e5"), + }, }) c.Assert(err, IsNil) |