From bc0bc9a9087239f069615b30561e4ea9939173d2 Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Fri, 19 Sep 2025 15:24:52 -0400 Subject: [PATCH] minor adjustment --- testing/__tests__/05_justify_content_tests.lua | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/testing/__tests__/05_justify_content_tests.lua b/testing/__tests__/05_justify_content_tests.lua index 8e282d9..b163f17 100644 --- a/testing/__tests__/05_justify_content_tests.lua +++ b/testing/__tests__/05_justify_content_tests.lua @@ -1045,11 +1045,8 @@ function TestJustifyContent:testComplexFormJustifyContentLayout() gap = 8, }) - local emailCheckbox = Gui.new({ id = "emailCheckbox", w = 20, h = 20 }) - local emailLabel = Gui.new({ id = "emailLabel", w = 60, h = 18 }) - - emailOption:addChild(emailCheckbox) - emailOption:addChild(emailLabel) + Gui.new({ parent = emailOption, id = "emailCheckbox", w = 20, h = 20 }) + Gui.new({ parent = emailOption, id = "emailLabel", w = 60, h = 18 }) local phoneOption = Gui.new({ id = "phoneOption",