[#164] sdk/object: Return nil parent if parent fields are empty

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-09-30 18:40:57 +03:00 committed by Leonard Lyubich
parent ae81f4584e
commit 9799e5d48c
2 changed files with 14 additions and 2 deletions

View file

@ -186,8 +186,13 @@ func TestRawObject_SetChildren(t *testing.T) {
func TestRawObject_SetParent(t *testing.T) {
obj := NewRaw()
require.Nil(t, obj.GetParent())
par := NewRaw()
par.SetID(randID(t))
par.SetContainerID(container.NewID())
par.SetSignature(pkg.NewSignature())
parObj := par.Object()
obj.SetParent(parObj)