aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/optionals.tm4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/optionals.tm b/test/optionals.tm
index a3f33d6c..928587f7 100644
--- a/test/optionals.tm
+++ b/test/optionals.tm
@@ -185,12 +185,12 @@ func main():
!! ...
!! Lambdas:
>> yep := maybe_lambda(yes)
- = func(): ...?
+ = func() [optionals.tm:54]?
>> nope := maybe_lambda(no)
= !func()
>> if yep:
>> yep
- = func(): ...
+ = func() [optionals.tm:54]
else: fail("Falsey: $yep")
>> if nope:
fail("Truthy: $nope")