mockobject: fix SetUnknownSize method to obey parameter passed in

This commit is contained in:
Nick Craig-Wood
2023-11-20 18:07:05 +00:00
parent bb88b8499b
commit 72dfdd97d8
+1 -1
View File
@@ -119,7 +119,7 @@ func (o *ContentMockObject) SetFs(f fs.Fs) {
// SetUnknownSize makes the mock object return -1 for size if true
func (o *ContentMockObject) SetUnknownSize(unknownSize bool) {
o.unknownSize = true
o.unknownSize = unknownSize
}
// Fs returns read only access to the Fs that this object is part of