[lldb/Symbol] Fix typo in SymbolFilePDBTests (NFC)

Signed-off-by: Med Ismail Bennani <medismail.bennani@gmail.com>
This commit is contained in:
Med Ismail Bennani 2021-05-05 00:38:41 +00:00
parent 30fcdf0b19
commit d5069dace7
No known key found for this signature in database
GPG Key ID: 9040401522D38F4E

View File

@ -340,7 +340,7 @@ TEST_F(SymbolFilePDBTests, TestLineTablesMatchSpecific) {
// Then test with line 9, and verify that only line 9 entries are added.
location_spec = SourceLocationSpec(
source_file, /*line=*/9, /*column=*/llvm::None, /*check_inlines=*/true);
count = symfile->ResolveSymbolContext(source_file, 9, true, scope, sc_list);
count = symfile->ResolveSymbolContext(location_spec, scope, sc_list);
EXPECT_EQ(1u, count);
EXPECT_TRUE(sc_list.GetContextAtIndex(0, sc));