(t *testing.T, c *object.Commit)
| 128 | } |
| 129 | |
| 130 | func encodeWithoutSignature(t *testing.T, c *object.Commit) []byte { |
| 131 | t.Helper() |
| 132 | out := &plumbing.MemoryObject{} |
| 133 | require.NoError(t, c.EncodeWithoutSignature(out)) |
| 134 | return readMemoryObject(t, out) |
| 135 | } |
| 136 | |
| 137 | func encodeTagWithoutSignature(t *testing.T, tag *object.Tag) []byte { |
| 138 | t.Helper() |
no test coverage detected
searching dependent graphs…