diff --git a/tests/roblox/instance/methods/ClearAllChildren.luau b/tests/roblox/instance/methods/ClearAllChildren.luau index ed6ec22..01bd6b5 100644 --- a/tests/roblox/instance/methods/ClearAllChildren.luau +++ b/tests/roblox/instance/methods/ClearAllChildren.luau @@ -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) diff --git a/tests/roblox/instance/methods/Destroy.luau b/tests/roblox/instance/methods/Destroy.luau index aa18344..bbffa07 100644 --- a/tests/roblox/instance/methods/Destroy.luau +++ b/tests/roblox/instance/methods/Destroy.luau @@ -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)