diff options
author | Dominik Stadler <centic@apache.org> | 2021-01-06 09:10:25 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2021-01-06 09:10:25 +0000 |
commit | da7725e3d643bfa96b5e1c2a66f52022538b34f2 (patch) | |
tree | c17586240e1e6b7fd201ebeeba471aa1a347ff2f /src/integrationtest | |
parent | 47c5e9b08dea1a632de9b00b73494ee9e0d60832 (diff) | |
download | poi-da7725e3d643bfa96b5e1c2a66f52022538b34f2.tar.gz poi-da7725e3d643bfa96b5e1c2a66f52022538b34f2.zip |
Adjust one expected error message in integration-tests
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1885188 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/integrationtest')
-rw-r--r-- | src/integrationtest/org/apache/poi/stress/SpreadsheetHandler.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/integrationtest/org/apache/poi/stress/SpreadsheetHandler.java b/src/integrationtest/org/apache/poi/stress/SpreadsheetHandler.java index abc1ca5615..dcee603bf2 100644 --- a/src/integrationtest/org/apache/poi/stress/SpreadsheetHandler.java +++ b/src/integrationtest/org/apache/poi/stress/SpreadsheetHandler.java @@ -145,6 +145,7 @@ public abstract class SpreadsheetHandler extends AbstractFileHandler { } catch (RuntimeException e) { if ("Could not find 'internal references' EXTERNALBOOK".equals(e.getMessage()) || "CountryRecord not found".equals(e.getMessage()) || + "CountryRecord or SSTRecord not found".equals(e.getMessage()) || "Cannot add more than 65535 shapes".equals(e.getMessage()) ) { // ignore these here for now continue; |