From a10a741fd568282fe1f82a258beae4ec0eb9d545 Mon Sep 17 00:00:00 2001 From: Aditya Prajapati Date: Thu, 25 May 2023 16:43:22 +0530 Subject: [PATCH] tests: ml: update expectation based on updated flush logic Signed-off-by: Aditya Prajapati --- tests/internal/multiline.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/internal/multiline.c b/tests/internal/multiline.c index 88dfa7403dd..e175e1171aa 100644 --- a/tests/internal/multiline.c +++ b/tests/internal/multiline.c @@ -110,8 +110,8 @@ struct record_check container_mix_input[] = { struct record_check container_mix_output[] = { {"a1\n"}, {"a2\n"}, - {"bbcc"}, {"ddee\n"}, + {"bbcc"}, {"single full"}, {"1a. some multiline log"}, {"1b. some multiline log"}, @@ -1431,7 +1431,7 @@ static void test_issue_5504() } TEST_CHECK(cb != NULL); - /* Trigger the callback without delay */ + /* Trigger the callback without delay */ cb(config, ml); /* This should not update the last_flush since it is before the timeout */ TEST_CHECK(ml->last_flush == last_flush);