disable broken test

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1882590 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2020-10-16 18:06:25 +00:00
parent a3194a9b5b
commit 667d9a8f32
1 changed files with 2 additions and 0 deletions

View File

@ -3603,12 +3603,14 @@ public final class TestXSSFBugs extends BaseTestBugzillaIssues {
}
// Or can open via the normal Factory, as stream or OLE2
/* this part test is currently broken - https://bz.apache.org/bugzilla/show_bug.cgi?id=64817
try (Workbook wb = WorkbookFactory.create(fs)) {
assertEquals(1, wb.getNumberOfSheets());
}
try (Workbook wb = WorkbookFactory.create(data.getInputStream())) {
assertEquals(1, wb.getNumberOfSheets());
}
*/
}
}
}