[#307] v2/storagegroup/test: Do not allocate memory if !empty

Move all memory allocation and field settings
in `Generate...(empty bool)` functions behind
`if !empty` check.

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
Pavel Karpy 2021-06-11 15:45:04 +03:00 committed by Alex Vanin
parent 383edb1be4
commit 9dfc7e7fe9

View file

@ -11,10 +11,10 @@ func GenerateStorageGroup(empty bool) *storagegroup.StorageGroup {
if !empty { if !empty {
m.SetValidationDataSize(44) m.SetValidationDataSize(44)
m.SetExpirationEpoch(55) m.SetExpirationEpoch(55)
m.SetMembers(refstest.GenerateObjectIDs(false))
} }
m.SetValidationHash(refstest.GenerateChecksum(empty)) m.SetValidationHash(refstest.GenerateChecksum(empty))
m.SetMembers(refstest.GenerateObjectIDs(empty))
return m return m
} }