From ad4480b4cd8eac9d533c70f249ecbfb994b4a282 Mon Sep 17 00:00:00 2001 From: Richard Date: Fri, 8 Sep 2023 17:50:55 -0700 Subject: [PATCH] Fix test text property --- test/tests.luau | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/tests.luau b/test/tests.luau index da7a3ec..29fd484 100644 --- a/test/tests.luau +++ b/test/tests.luau @@ -1268,7 +1268,9 @@ TEST("spring()", function() local output = spring(input, 1, 1) local _label = create "TextLabel" { - Text = output + Text = function() + return tostring(output()) + end } local wref = { output }