diff options
author | Santiago M. Mola <santi@mola.io> | 2016-12-15 09:36:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-15 09:36:31 +0100 |
commit | 130bc17dfe2ed88e2f122a0b44a9a45f5114697d (patch) | |
tree | 93c0f6919426ac586369a6d3eeb0661cefe5f1cd /plumbing/protocol/packp/updreq_decode_test.go | |
parent | 0af572dd21c0aa79d13745b633ee24ba6c4d6cf1 (diff) | |
download | go-git-130bc17dfe2ed88e2f122a0b44a9a45f5114697d.tar.gz |
protocol/packp: use ReferenceName type for Command.Name. (#187)
Diffstat (limited to 'plumbing/protocol/packp/updreq_decode_test.go')
-rw-r--r-- | plumbing/protocol/packp/updreq_decode_test.go | 22 |
1 files changed, 11 insertions, 11 deletions
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{ |