arrays shall be compared using Arrays.toString()

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1150455 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2011-07-24 18:35:03 +00:00
parent fd4a0b0bc4
commit cbd29dbda3
1 changed files with 3 additions and 1 deletions

View File

@ -19,6 +19,7 @@ package org.apache.poi.hwpf.usermodel;
import java.io.IOException;
import java.io.InputStream;
import java.util.Arrays;
import java.util.List;
import junit.framework.AssertionFailedError;
@ -468,7 +469,8 @@ public final class TestProblems extends HWPFTestCase {
try {
assertEquals(extractor1.getFooterText(), extractor2.getFooterText());
assertEquals(extractor1.getHeaderText(), extractor2.getHeaderText());
assertEquals(extractor1.getParagraphText(), extractor2.getParagraphText());
assertEquals( Arrays.toString( extractor1.getParagraphText() ),
Arrays.toString( extractor2.getParagraphText() ) );
assertEquals(extractor1.getText(), extractor2.getText());