aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-24 15:29:35 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-24 15:29:35 -0500
commita33de1a36e64fa87be74517ee94ea6e20a8d9223 (patch)
treefc0c04d54fac2675d99b0a8556c4063d981d6f42 /tests
parent911b39dad1a5d6d2f655fd1f98c9fb22fe2fb406 (diff)
Fix test
Diffstat (limited to 'tests')
-rw-r--r--tests/structs.nl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/structs.nl b/tests/structs.nl
index dae69e9f..a9bb545f 100644
--- a/tests/structs.nl
+++ b/tests/structs.nl
@@ -37,11 +37,11 @@ func test_mixed()
>> y := Mixed(99, "Hello")
>> x == y
= no
- >> x == Foo(10, "Hello")
+ >> x == Mixed(10, "Hello")
= yes
- >> x == Foo(10, "Bye")
+ >> x == Mixed(10, "Bye")
= no
- >> x < Foo(11, "Hello")
+ >> x < Mixed(11, "Hello")
= yes
>> t := {x=> "found"; default="missing"}
>> t[x]