From dcc3f8bef49d80624b893d0140d2f75f86235f43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8C=97=E9=9C=B2?= <69190413+illusory0x0@users.noreply.github.com> Date: Wed, 25 Jun 2025 03:37:07 +0800 Subject: [PATCH] fix: language breaking change --- src/lib/hello_test.mbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/hello_test.mbt b/src/lib/hello_test.mbt index 361d36a..51c2148 100644 --- a/src/lib/hello_test.mbt +++ b/src/lib/hello_test.mbt @@ -1,6 +1,6 @@ ///| test "hello" { if @lib.hello() != "Hello, world!" { - fail!("@lib.hello() != \"Hello, world!\"") + fail("@lib.hello() != \"Hello, world!\"") } }