From f9ccbf1f5770ac2a84e573d3aca3f9c9ee30ae69 Mon Sep 17 00:00:00 2001 From: ghizard <50744617+ghizard@users.noreply.github.com> Date: Thu, 6 Oct 2022 11:11:17 -0400 Subject: [PATCH] GP-0 fix tests broken by GP-2649 --- .../bin/format/pdb2/pdbreader/symbol/SymbolsTest.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Ghidra/Features/PDB/src/test/java/ghidra/app/util/bin/format/pdb2/pdbreader/symbol/SymbolsTest.java b/Ghidra/Features/PDB/src/test/java/ghidra/app/util/bin/format/pdb2/pdbreader/symbol/SymbolsTest.java index 3b6ca19600..cf6a7d9402 100644 --- a/Ghidra/Features/PDB/src/test/java/ghidra/app/util/bin/format/pdb2/pdbreader/symbol/SymbolsTest.java +++ b/Ghidra/Features/PDB/src/test/java/ghidra/app/util/bin/format/pdb2/pdbreader/symbol/SymbolsTest.java @@ -15,7 +15,8 @@ */ package ghidra.app.util.bin.format.pdb2.pdbreader.symbol; -import static org.junit.Assert.*; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.fail; import java.math.BigInteger; @@ -361,7 +362,7 @@ public class SymbolsTest extends AbstractGenericTest { assertEquals(symbol instanceof Compile2StMsSymbol, true); String result = symbol.toString().trim(); assertEquals("COMPILE2_ST:\n" + " Language: C\n" + " Target Processor: 8080\n" + - " Compiled for edit and continue: no\n" + " Compiled withoug debugging info: no\n" + + " Compiled for edit and continue: no\n" + " Compiled without debugging info: no\n" + " Compiled with LTCG: no\n" + " Compiled with /bzalign: no\n" + " Managed code present: no\n" + " Compiled with /GS: no\n" + " Compiled with /hotpatch: no\n" + " Converted by CVTCIL: no\n" + @@ -393,7 +394,7 @@ public class SymbolsTest extends AbstractGenericTest { assertEquals(symbol instanceof Compile2MsSymbol, true); String result = symbol.toString().trim(); assertEquals("COMPILE2:\n" + " Language: C\n" + " Target Processor: 8080\n" + - " Compiled for edit and continue: no\n" + " Compiled withoug debugging info: no\n" + + " Compiled for edit and continue: no\n" + " Compiled without debugging info: no\n" + " Compiled with LTCG: no\n" + " Compiled with /bzalign: no\n" + " Managed code present: no\n" + " Compiled with /GS: no\n" + " Compiled with /hotpatch: no\n" + " Converted by CVTCIL: no\n" + @@ -424,7 +425,7 @@ public class SymbolsTest extends AbstractGenericTest { assertEquals(symbol instanceof Compile3MsSymbol, true); String result = symbol.toString().trim(); assertEquals("COMPILE3:\n" + " Language: C\n" + " Target Processor: 8080\n" + - " Compiled for edit and continue: no\n" + " Compiled withoug debugging info: no\n" + + " Compiled for edit and continue: no\n" + " Compiled without debugging info: no\n" + " Compiled with LTCG: no\n" + " Compiled with /bzalign: no\n" + " Managed code present: no\n" + " Compiled with /GS: no\n" + " Compiled with /hotpatch: no\n" + " Converted by CVTCIL: no\n" +