aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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]