diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-18 11:35:01 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-18 11:35:01 +0200 |
commit | b1d116c59f7656dc8d5ff7294ba8f8a82c51bfd1 (patch) | |
tree | 03cc90f515bdec8efbaef6390ce99cd24634ffea /clients/http/git_upload_pack_test.go | |
parent | 27d27020ba5f5b7b96d24454f6d09eaecfba6a76 (diff) | |
download | go-git-b1d116c59f7656dc8d5ff7294ba8f8a82c51bfd1.tar.gz |
clients/http: fix tests
Diffstat (limited to 'clients/http/git_upload_pack_test.go')
-rw-r--r-- | clients/http/git_upload_pack_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clients/http/git_upload_pack_test.go b/clients/http/git_upload_pack_test.go index 702f1b2..e252ced 100644 --- a/clients/http/git_upload_pack_test.go +++ b/clients/http/git_upload_pack_test.go @@ -87,5 +87,5 @@ func (s *RemoteSuite) TestFetchMulti(c *C) { b, err := ioutil.ReadAll(reader) c.Assert(err, IsNil) - c.Assert(len(b), HasLen, 85585) + c.Assert(b, HasLen, 85585) } |