From 2692f7047358d44e4bde25be7e2632e95105cfb9 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Thu, 5 Mar 2026 22:14:57 +0100 Subject: [PATCH] tests: fix functional test message_send --- tests/functionaltests/test_message.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/functionaltests/test_message.c b/tests/functionaltests/test_message.c index 1f4453cf..bc1a1426 100644 --- a/tests/functionaltests/test_message.c +++ b/tests/functionaltests/test_message.c @@ -19,7 +19,7 @@ message_send(void** state) "Hi there" "")); - assert_true(prof_output_regex("me: .+Hi there")); + assert_true(prof_output_exact("me: Hi there")); } void @@ -48,5 +48,5 @@ message_receive_chatwin(void** state) "How are you?" ""); - assert_true(prof_output_regex("someuser@chatserv.org/laptop: .+How are you?")); + assert_true(prof_output_exact("someuser@chatserv.org/laptop: How are you?")); }