From 130bc17dfe2ed88e2f122a0b44a9a45f5114697d Mon Sep 17 00:00:00 2001 From: "Santiago M. Mola" Date: Thu, 15 Dec 2016 09:36:31 +0100 Subject: protocol/packp: use ReferenceName type for Command.Name. (#187) --- plumbing/protocol/packp/updreq_decode_test.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'plumbing/protocol/packp/updreq_decode_test.go') diff --git a/plumbing/protocol/packp/updreq_decode_test.go b/plumbing/protocol/packp/updreq_decode_test.go index 6cbab2b..c084334 100644 --- a/plumbing/protocol/packp/updreq_decode_test.go +++ b/plumbing/protocol/packp/updreq_decode_test.go @@ -151,7 +151,7 @@ func (s *UpdReqDecodeSuite) TestInvalidCommandMissingName(c *C) { func (s *UpdReqDecodeSuite) TestOneUpdateCommand(c *C) { hash1 := plumbing.NewHash("1ecf0ef2c2dffb796033e5a02219af86ec6584e5") hash2 := plumbing.NewHash("2ecf0ef2c2dffb796033e5a02219af86ec6584e5") - name := "myref" + name := plumbing.ReferenceName("myref") expected := NewReferenceUpdateRequest() expected.Commands = []*Command{ @@ -173,9 +173,9 @@ func (s *UpdReqDecodeSuite) TestMultipleCommands(c *C) { expected := NewReferenceUpdateRequest() expected.Commands = []*Command{ - {Name: "myref1", Old: hash1, New: hash2}, - {Name: "myref2", Old: plumbing.ZeroHash, New: hash2}, - {Name: "myref3", Old: hash1, New: plumbing.ZeroHash}, + {Name: plumbing.ReferenceName("myref1"), Old: hash1, New: hash2}, + {Name: plumbing.ReferenceName("myref2"), Old: plumbing.ZeroHash, New: hash2}, + {Name: plumbing.ReferenceName("myref3"), Old: hash1, New: plumbing.ZeroHash}, } expected.Packfile = ioutil.NopCloser(bytes.NewReader([]byte{})) @@ -195,9 +195,9 @@ func (s *UpdReqDecodeSuite) TestMultipleCommandsAndCapabilities(c *C) { expected := NewReferenceUpdateRequest() expected.Commands = []*Command{ - {Name: "myref1", Old: hash1, New: hash2}, - {Name: "myref2", Old: plumbing.ZeroHash, New: hash2}, - {Name: "myref3", Old: hash1, New: plumbing.ZeroHash}, + {Name: plumbing.ReferenceName("myref1"), Old: hash1, New: hash2}, + {Name: plumbing.ReferenceName("myref2"), Old: plumbing.ZeroHash, New: hash2}, + {Name: plumbing.ReferenceName("myref3"), Old: hash1, New: plumbing.ZeroHash}, } expected.Capabilities.Add("shallow") expected.Packfile = ioutil.NopCloser(bytes.NewReader([]byte{})) @@ -218,9 +218,9 @@ func (s *UpdReqDecodeSuite) TestMultipleCommandsAndCapabilitiesShallow(c *C) { expected := NewReferenceUpdateRequest() expected.Commands = []*Command{ - {Name: "myref1", Old: hash1, New: hash2}, - {Name: "myref2", Old: plumbing.ZeroHash, New: hash2}, - {Name: "myref3", Old: hash1, New: plumbing.ZeroHash}, + {Name: plumbing.ReferenceName("myref1"), Old: hash1, New: hash2}, + {Name: plumbing.ReferenceName("myref2"), Old: plumbing.ZeroHash, New: hash2}, + {Name: plumbing.ReferenceName("myref3"), Old: hash1, New: plumbing.ZeroHash}, } expected.Capabilities.Add("shallow") expected.Shallow = &hash1 @@ -240,7 +240,7 @@ func (s *UpdReqDecodeSuite) TestMultipleCommandsAndCapabilitiesShallow(c *C) { func (s *UpdReqDecodeSuite) TestWithPackfile(c *C) { hash1 := plumbing.NewHash("1ecf0ef2c2dffb796033e5a02219af86ec6584e5") hash2 := plumbing.NewHash("2ecf0ef2c2dffb796033e5a02219af86ec6584e5") - name := "myref" + name := plumbing.ReferenceName("myref") expected := NewReferenceUpdateRequest() expected.Commands = []*Command{ -- cgit