From 40faca7dd971b43c20ade26817a6ae8aed8c7b25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Tue, 6 Oct 2020 23:19:32 +0200 Subject: [PATCH] Fix TestClangImport --- test/testclangimport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testclangimport.cpp b/test/testclangimport.cpp index afb56bf46..99fadaf1b 100644 --- a/test/testclangimport.cpp +++ b/test/testclangimport.cpp @@ -358,7 +358,7 @@ private: const char clang[] = "`-CXXRecordDecl 0x8ecd60 <1.cpp:1:1, line:4:1> line:1:8 struct S definition\n" " `-CXXDestructorDecl 0x8ed088 col:3 ~S 'void () noexcept'\n" " `-CompoundStmt 0x8ed1a8 "; - ASSERT_EQUALS("class S\n\n{ ~S ( ) { } }", parse(clang)); + ASSERT_EQUALS("struct S\n\n{ ~S ( ) { } }", parse(clang)); } void cxxForRangeStmt1() {