From 9b485be020b6021f2cb86d97efb5b05166901bdf Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 7 Mar 2025 16:55:48 -0500 Subject: [PATCH] Fix for text uppercasing in test --- test/lambdas.tm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lambdas.tm b/test/lambdas.tm index d830a36..b1bc296 100644 --- a/test/lambdas.tm +++ b/test/lambdas.tm @@ -23,7 +23,7 @@ func main(): >> add_100(5) = 105 - >> shout2 := suffix_fn(Text.upper, "!") + >> shout2 := suffix_fn(func(t:Text): t:upper(), "!") >> shout2("hello") = "HELLO!"