From fbd31f61a60117b9556166326c813d7af5bcb1f2 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Thu, 5 Mar 2026 13:19:37 +0100 Subject: [PATCH] tests: fix functional test connect_shows_presence_updates --- tests/functionaltests/test_connect.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/functionaltests/test_connect.c b/tests/functionaltests/test_connect.c index d1f9d832..d2f55ec1 100644 --- a/tests/functionaltests/test_connect.c +++ b/tests/functionaltests/test_connect.c @@ -59,26 +59,26 @@ connect_shows_presence_updates(void** state) "dnd" "busy!" ""); - assert_true(prof_output_exact("Buddy1 (mobile) is dnd, \"busy!\"")); + assert_true(prof_output_exact("++ Buddy1 (mobile) is dnd, \"busy!\"")); stbbr_send( "" "chat" "Talk to me!" ""); - assert_true(prof_output_exact("Buddy1 (laptop) is chat, \"Talk to me!\"")); + assert_true(prof_output_exact("++ Buddy1 (laptop) is chat, \"Talk to me!\"")); stbbr_send( "" "away" "Out of office" ""); - assert_true(prof_output_exact("Buddy2 (work) is away, \"Out of office\"")); + assert_true(prof_output_exact("++ Buddy2 (work) is away, \"Out of office\"")); stbbr_send( "" "xa" "Gone :(" ""); - assert_true(prof_output_exact("Buddy1 (mobile) is xa, \"Gone :(\"")); + assert_true(prof_output_exact("++ Buddy1 (mobile) is xa, \"Gone :(\"")); }