Fixed test failing due to Front End status panel change to turn newline

characters to spaces
This commit is contained in:
dragonmacher
2020-12-11 13:38:34 -05:00
parent 6689e007be
commit 422d41dd53
@@ -163,7 +163,7 @@ public class DataTypeMerge8Test extends AbstractDataTypeMergeTest {
String statusText = label.getText();
String expectedText =
"Structure Merge: Not enough undefined bytes to fit /XYZ in structure " +
"/MISC/ABC at offset 0x4.\nIt needs 3 more byte(s) to be able to fit.";
assertTrue(statusText.contains(expectedText));
"/MISC/ABC at offset 0x4. It needs 3 more byte(s) to be able to fit.";
assertTrue("Wrong status text: " + statusText, statusText.contains(expectedText));
}
}