]> source.dussan.org Git - poi.git/commitdiff
Undo a toString() removal for a case where it is actually necessary.
authorDominik Stadler <centic@apache.org>
Tue, 1 Apr 2014 08:28:52 +0000 (08:28 +0000)
committerDominik Stadler <centic@apache.org>
Tue, 1 Apr 2014 08:28:52 +0000 (08:28 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1583571 13f79535-47bb-0310-9956-ffa450edef68

src/testcases/org/apache/poi/hssf/usermodel/TestEscherGraphics2d.java

index a16033efb3994b22d9230f498b856a7433eef090..dc3d5f42cee83bbd10d45df470c427f5169656f2 100644 (file)
@@ -31,8 +31,8 @@ public final class TestEscherGraphics2d extends TestCase {
        private HSSFShapeGroup escherGroup;
        private EscherGraphics2d graphics;
 
-       protected void setUp() {
-
+       @Override
+    protected void setUp() {
                HSSFWorkbook workbook = new HSSFWorkbook();
                HSSFSheet sheet = workbook.createSheet("test");
                escherGroup = sheet.createDrawingPatriarch().createGroup(new HSSFClientAnchor(0,0,1023,255,(short)0,0,(short) 0,0));
@@ -44,7 +44,7 @@ public final class TestEscherGraphics2d extends TestCase {
        public void testDrawString() {
                graphics.drawString("This is a test", 10, 10);
                HSSFTextbox t = (HSSFTextbox) escherGroup.getChildren().get(0);
-               assertEquals("This is a test", t.getString());
+               assertEquals("This is a test", t.getString().getString());
 
                // Check that with a valid font, it's still ok
                Font font = new Font("Forte", Font.PLAIN, 12);