From a33de1a36e64fa87be74517ee94ea6e20a8d9223 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 24 Feb 2024 15:29:35 -0500 Subject: Fix test --- tests/structs.nl | 6 +++--- 1 file 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] -- cgit v1.2.3