From fe1fc1aa7dca3e0f6e54ab17f0acfa45f269e58c Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Sat, 31 Oct 2015 00:40:50 +0100 Subject: clients: Capabilities parsing improvement and GitUploadPackInfo encoding --- common_test.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'common_test.go') diff --git a/common_test.go b/common_test.go index 446bc16..612afd1 100644 --- a/common_test.go +++ b/common_test.go @@ -28,9 +28,8 @@ func (s *MockGitUploadPackService) Info() (*common.GitUploadPackInfo, error) { return &common.GitUploadPackInfo{ Capabilities: common.Capabilities(values), - Refs: map[string]*common.RemoteHead{ - "refs/heads/master": &common.RemoteHead{Id: hash}, - }, + Head: "refs/heads/master", + Refs: map[string]internal.Hash{"refs/heads/master": hash}, }, nil } -- cgit