diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-19 17:42:13 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-19 17:42:13 +0200 |
commit | 1d56b98d9b02e20f7feea542c75746eab34fad63 (patch) | |
tree | 006e8c3ac5e40353032109a5259bb28c37751996 /clients/common_test.go | |
parent | b1d116c59f7656dc8d5ff7294ba8f8a82c51bfd1 (diff) | |
download | go-git-1d56b98d9b02e20f7feea542c75746eab34fad63.tar.gz |
Remote.Fetch base on RefSpec, improvement of the responsabilities separation
Diffstat (limited to 'clients/common_test.go')
-rw-r--r-- | clients/common_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clients/common_test.go b/clients/common_test.go index 72d8e99..0381f63 100644 --- a/clients/common_test.go +++ b/clients/common_test.go @@ -76,6 +76,10 @@ func (s *dummyProtocolService) Fetch(r *common.GitUploadPackRequest) (io.ReadClo return nil, nil } +func (s *dummyProtocolService) Disconnect() error { + return nil +} + func typeAsString(v interface{}) string { return fmt.Sprintf("%T", v) } |