From c9607884044f79b9aaf8c694c4dcbb351fb66992 Mon Sep 17 00:00:00 2001 From: Sasial <44125644+sasial-dev@users.noreply.github.com> Date: Sat, 2 Nov 2024 16:13:39 +1000 Subject: [PATCH] Fix Tests --- tests/roblox/instance/methods/ClearAllChildren.luau | 8 ++------ tests/roblox/instance/methods/Destroy.luau | 12 +++--------- 2 files changed, 5 insertions(+), 15 deletions(-) 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)