lsf: fix integration tests

This commit is contained in:
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 // Hash returns the selected checksum of the file
// If no checksum is available it returns "" // If no checksum is available it returns ""
func (o *Object) Hash(hash fs.HashType) (string, error) { func (o *Object) Hash(hash fs.HashType) (string, error) {
return "", nil return "", fs.ErrHashUnsupported
} }
// UnWrap returns the wrapped Object // UnWrap returns the wrapped Object

View file

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