Fix test which was has meaningless assertion

It seems that small mistake slip due to copy-paste.
This commit is contained in:
Andrii Kurdiumov 2019-06-20 19:53:48 +03:00
parent cafbb77db0
commit d161081941

View file

@ -540,7 +540,7 @@ public class PdbParserTest extends AbstractGhidraHeadlessIntegrationTest {
File pdb = PdbParserNEW.findPDB(testProgram, symbolsFolder.getAbsolutePath());
assertNotNull(pdb);
assertEquals(pdb.getAbsolutePath(), pdb.getAbsolutePath());
assertEquals(pdbFile.getAbsolutePath(), pdb.getAbsolutePath());
}
catch (PdbException pdbe) {
fail("Unexpected PdbException!");