lsf: fix integration tests

s3-about
Nick Craig-Wood 2018-01-11 13:52:15 +00:00
parent 6d333da69f
commit 712e6a8085
2 changed files with 2 additions and 2 deletions

View File

@ -554,7 +554,7 @@ func (o *Object) Size() int64 {
// Hash returns the selected checksum of the file
// If no checksum is available it returns ""
func (o *Object) Hash(hash fs.HashType) (string, error) {
return "", nil
return "", fs.ErrHashUnsupported
}
// UnWrap returns the wrapped Object

View File

@ -1011,7 +1011,7 @@ func TestListFormat(t *testing.T) {
list.SetOutput(nil)
list.AddHash(test.ht)
got := fs.ListFormatted(&items[0], &list)
if got != "UNSUPPORTED" {
if got != "UNSUPPORTED" && got != "" {
assert.Equal(t, test.want, got)
}
}