From 63312a431136cb14e6a15b36b933416579fbfe10 Mon Sep 17 00:00:00 2001 From: tsuf239 <39455181+tsuf239@users.noreply.github.com> Date: Mon, 1 Jul 2024 15:07:21 +0300 Subject: [PATCH] fix assert test --- examples/tests/sdk_tests/expect/assert.test.w | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tests/sdk_tests/expect/assert.test.w b/examples/tests/sdk_tests/expect/assert.test.w index 1de58aeb3d3..7bc6ebd8e77 100644 --- a/examples/tests/sdk_tests/expect/assert.test.w +++ b/examples/tests/sdk_tests/expect/assert.test.w @@ -187,7 +187,7 @@ test "expect" { try{ expect.match("this contains hello world string", "new string"); }catch err{ - expect.equal(err, "The input did not match the regular expression new string"); + expect.equal(err, "The input \"this contains hello world string\" did not match the regular expression new string"); } // "negative doesNotMatch test"