From 4df52e3fa4e4194c5646a0a1071c87baa9def60a Mon Sep 17 00:00:00 2001 From: chrchr-github <78114321+chrchr-github@users.noreply.github.com> Date: Wed, 2 Oct 2024 17:13:48 +0200 Subject: [PATCH] Update test.cpp --- test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.cpp b/test.cpp index 63072a7..d8e359e 100644 --- a/test.cpp +++ b/test.cpp @@ -1834,7 +1834,7 @@ static void missingHeader4() const char code[] = "#/**/include <>\n"; simplecpp::OutputList outputList; ASSERT_EQUALS("", preprocess(code, &outputList)); - ASSERT_EQUALS("actual:file0,1,syntax_error,No header in #include\n", toString(outputList)); + ASSERT_EQUALS("file0,1,syntax_error,No header in #include\n", toString(outputList)); } static void nestedInclude()