diff options
author | Javen O'Neal <onealj@apache.org> | 2015-12-29 10:44:57 +0000 |
---|---|---|
committer | Javen O'Neal <onealj@apache.org> | 2015-12-29 10:44:57 +0000 |
commit | e257670796834903d01897062885d924104e7b22 (patch) | |
tree | 2f78659e9f1d5d6f1e62105aaaa2082aafb5d21b /src | |
parent | ba1b0a2d8394787591006cb491ef57afa89efdf6 (diff) | |
download | poi-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.java | 1 |
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", |