Tika upgrade, and enable more of the .doc+.docx -> .html tests for .doc now support is there in Tika

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@22591 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Nick Burch
2010-09-16 13:38:34 +00:00
parent 15bd8754d9
commit 72ded1e746

View File

@@ -344,7 +344,6 @@ public class HTMLRenderingEngineTest extends BaseAlfrescoSpringTest
String html = reader.getContentString();
assertEquals("<?xml", html.substring(0, 5));
if(name.endsWith(".docx")) {
// Check that the html has the img tags
assertEquals(
"Couldn't find img tag in html:\n" + html,
@@ -357,7 +356,6 @@ if(name.endsWith(".docx")) {
"Couldn't find correct img src in html:\n" + expSource + "\n" + html,
true, html.contains(expSource)
);
}
// Check we got an image folder
int numItems = nodeService.getChildAssocs(targetFolder).size();