diff options
author | Sergey Vladimirov <sergey@apache.org> | 2011-08-23 14:16:07 +0000 |
---|---|---|
committer | Sergey Vladimirov <sergey@apache.org> | 2011-08-23 14:16:07 +0000 |
commit | 16e9e11493c64414e81713d1f92cf19051ee1acd (patch) | |
tree | e89b630b278976b6e947758967b06fcba335fdc6 | |
parent | 2366e41d6893c3eec3c827ff890c484f89a21d04 (diff) | |
download | poi-16e9e11493c64414e81713d1f92cf19051ee1acd.tar.gz poi-16e9e11493c64414e81713d1f92cf19051ee1acd.zip |
do not test ex45698-22488.xls -- requires too much memory
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1160703 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/scratchpad/testcases/org/apache/poi/hssf/converter/TestExcelToHtmlConverterSuite.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/scratchpad/testcases/org/apache/poi/hssf/converter/TestExcelToHtmlConverterSuite.java b/src/scratchpad/testcases/org/apache/poi/hssf/converter/TestExcelToHtmlConverterSuite.java index 673998137e..5454703b37 100644 --- a/src/scratchpad/testcases/org/apache/poi/hssf/converter/TestExcelToHtmlConverterSuite.java +++ b/src/scratchpad/testcases/org/apache/poi/hssf/converter/TestExcelToHtmlConverterSuite.java @@ -41,7 +41,9 @@ public class TestExcelToHtmlConverterSuite /** * YK: a quick hack to exclude failing documents from the suite. */ - private static List<String> failingFiles = Arrays.asList(); + private static List<String> failingFiles = Arrays.asList( // + /* not failing, but requires more memory */ + "ex45698-22488.xls" ); public static Test suite() { |