Fix Tests

This commit is contained in:
Sasial 2024-11-02 16:13:39 +10:00
parent 2d91123796
commit c960788404
No known key found for this signature in database
GPG key ID: EDFF63A7501D3F83
2 changed files with 5 additions and 15 deletions

View file

@ -20,14 +20,10 @@ assert(not pcall(function()
return child1.Name
end))
assert(not pcall(function()
return child1.Parent
end))
assert(not child1.Parent)
assert(not pcall(function()
return child2.Name
end))
assert(not pcall(function()
return child2.Parent
end))
assert(not child2.Parent)

View file

@ -14,22 +14,16 @@ assert(not pcall(function()
return root.Name
end))
assert(not pcall(function()
return root.Parent
end))
assert(not root.Parent)
assert(not pcall(function()
return child.Name
end))
assert(not pcall(function()
return child.Parent
end))
assert(not child.Parent)
assert(not pcall(function()
return descendant.Name
end))
assert(not pcall(function()
return descendant.Parent
end))
assert(not descendant.Parent)