diff options
-rw-r--r-- | lldb/unittests/SymbolFile/PDB/SymbolFilePDBTests.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/unittests/SymbolFile/PDB/SymbolFilePDBTests.cpp b/lldb/unittests/SymbolFile/PDB/SymbolFilePDBTests.cpp index 909ef601e44..0470394d425 100644 --- a/lldb/unittests/SymbolFile/PDB/SymbolFilePDBTests.cpp +++ b/lldb/unittests/SymbolFile/PDB/SymbolFilePDBTests.cpp @@ -603,9 +603,8 @@ TEST_F(SymbolFilePDBTests, TestFindSymbolsWithNameAndType) { lldb::ModuleSP module = std::make_shared<Module>(fspec, aspec); SymbolContextList sc_list; - EXPECT_EQ(1u, - module->FindSymbolsWithNameAndType(ConstString("?foo@@YAHH@Z"), - lldb::eSymbolTypeAny, sc_list)); + module->FindSymbolsWithNameAndType(ConstString("?foo@@YAHH@Z"), + lldb::eSymbolTypeAny, sc_list); EXPECT_EQ(1u, sc_list.GetSize()); SymbolContext sc; |