aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJaven O'Neal <onealj@apache.org>2015-12-29 10:44:57 +0000
committerJaven O'Neal <onealj@apache.org>2015-12-29 10:44:57 +0000
commite257670796834903d01897062885d924104e7b22 (patch)
tree2f78659e9f1d5d6f1e62105aaaa2082aafb5d21b /src
parentba1b0a2d8394787591006cb491ef57afa89efdf6 (diff)
downloadpoi-e257670796834903d01897062885d924104e7b22.tar.gz
poi-e257670796834903d01897062885d924104e7b22.zip
add comment
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1722094 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/ooxml/testcases/org/apache/poi/ss/TestWorkbookFactory.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ooxml/testcases/org/apache/poi/ss/TestWorkbookFactory.java b/src/ooxml/testcases/org/apache/poi/ss/TestWorkbookFactory.java
index 72ba65546e..ef4c9576ed 100644
--- a/src/ooxml/testcases/org/apache/poi/ss/TestWorkbookFactory.java
+++ b/src/ooxml/testcases/org/apache/poi/ss/TestWorkbookFactory.java
@@ -60,6 +60,7 @@ public final class TestWorkbookFactory {
*/
private static void assertCloseDoesNotModifyFile(String filename, Workbook wb) throws IOException {
final byte[] before = HSSFTestDataSamples.getTestDataFileContent(filename);
+ // FIXME: replace with wb.close() when bug 58779 is resolved
closeOrRevert(wb);
final byte[] after = HSSFTestDataSamples.getTestDataFileContent(filename);
assertArrayEquals(filename + " sample file was modified as a result of closing the workbook",