From 0bb19f726c02737034d4f283618094b9b732a0aa Mon Sep 17 00:00:00 2001 From: lmp Date: Sat, 21 Sep 2024 09:25:26 +0200 Subject: [PATCH] ci, tests: ignore `details:` as well --- tests/vab_error_test.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/vab_error_test.v b/tests/vab_error_test.v index 07ed8737..983c90b0 100644 --- a/tests/vab_error_test.v +++ b/tests/vab_error_test.v @@ -97,7 +97,7 @@ fn sync_run(job TOMLTestJob) &TOMLTestJobResult { }.string() expect_exit_code := doc.value('expect.exit_code').default_to(0).int() diff_from_line := doc.value('compare.output.from_line').default_to(0).int() - ignore_lines_starting_with := ['notice:'] + ignore_lines_starting_with := ['notice:', 'details:', ' '] expected_out_path := job.job_file.replace('.toml', '.out')