diff --git a/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestBugs.java b/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestBugs.java index 70b362027..7fadde76f 100644 --- a/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestBugs.java +++ b/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestBugs.java @@ -767,7 +767,7 @@ public class TestBugs extends TestCase } /** - * Bug 53380 - ArrayIndexOutOfBounds Excetion parsing word 97 document + * Bug 53380 - ArrayIndexOutOfBounds Exception parsing word 97 document */ public void testBug53380_1() throws Exception { @@ -775,7 +775,7 @@ public class TestBugs extends TestCase } /** - * Bug 53380 - ArrayIndexOutOfBounds Excetion parsing word 97 document + * Bug 53380 - ArrayIndexOutOfBounds Exception parsing word 97 document */ public void testBug53380_2() throws Exception { @@ -783,10 +783,18 @@ public class TestBugs extends TestCase } /** - * Bug 53380 - ArrayIndexOutOfBounds Excetion parsing word 97 document + * Bug 53380 - ArrayIndexOutOfBounds Exception parsing word 97 document */ public void testBug53380_3() throws Exception { HWPFTestDataSamples.openSampleFile( "Bug53380_3.doc" ); } + + /** + * Bug 53380 - ArrayIndexOutOfBounds Exception parsing word 97 document + */ + public void testBug53380_4() throws Exception + { + HWPFTestDataSamples.openSampleFile( "Bug53380_4.doc" ); + } } diff --git a/test-data/document/Bug53380_4.doc b/test-data/document/Bug53380_4.doc new file mode 100644 index 000000000..dc33d898b Binary files /dev/null and b/test-data/document/Bug53380_4.doc differ