aboutsummaryrefslogtreecommitdiff
path: root/test/optionals.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-09-21 18:06:39 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-09-21 18:06:39 -0400
commitc0d0299b0f72b43c1f125c2e5319e4dce3e4c171 (patch)
tree6682afdac4af8ceb1b71764724b16b9e7d465264 /test/optionals.tm
parent0892ceda93fdc8f29baae3549b555d9519bfe523 (diff)
Fix tests
Diffstat (limited to 'test/optionals.tm')
-rw-r--r--test/optionals.tm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/optionals.tm b/test/optionals.tm
index 4528ee6c..51a78380 100644
--- a/test/optionals.tm
+++ b/test/optionals.tm
@@ -223,7 +223,7 @@ func main()
# Test comparisons, hashing, equality:
assert none != optional
assert optional == 5
- >> nones : {Int?=Bool} = {none=yes, none=yes}
+ >> nones : {Int?:Bool} = {none: yes, none: yes}
assert nones.keys == [none]
assert [5, none, none, 6].sorted() == [none, none, 5, 6]