Fix test text property

This commit is contained in:
Richard 2023-09-08 17:50:55 -07:00
parent a54248c360
commit ad4480b4cd

View file

@ -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 }