object: add unit test of HeadRequest.ReadSignedData method

This commit is contained in:
Leonard Lyubich 2020-05-18 12:47:13 +03:00
parent d391421e5e
commit 2c571718d0
2 changed files with 31 additions and 0 deletions

View file

@ -386,3 +386,8 @@ func Stringify(dst io.Writer, obj *Object) error {
return nil
}
// SetFullHeaders is a FullHeaders field setter.
func (m *HeadRequest) SetFullHeaders(v bool) {
m.FullHeaders = v
}