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 return child1.Name
end)) end))
assert(not pcall(function() assert(not child1.Parent)
return child1.Parent
end))
assert(not pcall(function() assert(not pcall(function()
return child2.Name return child2.Name
end)) end))
assert(not pcall(function() assert(not child2.Parent)
return child2.Parent
end))

View file

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