From d161081941f267fca68c6be88c3dc4102c37ade5 Mon Sep 17 00:00:00 2001 From: Andrii Kurdiumov Date: Thu, 20 Jun 2019 19:53:48 +0300 Subject: [PATCH 1/2] Fix test which was has meaningless assertion It seems that small mistake slip due to copy-paste. --- .../test/java/ghidra/app/util/bin/format/pdb/PdbParserTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ghidra/Features/PDB/src/test/java/ghidra/app/util/bin/format/pdb/PdbParserTest.java b/Ghidra/Features/PDB/src/test/java/ghidra/app/util/bin/format/pdb/PdbParserTest.java index 3186fd33a3..58ce5afed7 100644 --- a/Ghidra/Features/PDB/src/test/java/ghidra/app/util/bin/format/pdb/PdbParserTest.java +++ b/Ghidra/Features/PDB/src/test/java/ghidra/app/util/bin/format/pdb/PdbParserTest.java @@ -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!"); From c7ab91994efc3658f9bee95723f8071dac4f3b30 Mon Sep 17 00:00:00 2001 From: Ryan Kurtz Date: Fri, 21 Jun 2019 13:33:58 -0400 Subject: [PATCH 2/2] GT-2953 (closes #706): Certifying. Pulled-from: Andrii Kurdiumov