diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-10-10 07:53:00 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-10-10 07:53:00 +0000 |
commit | 29c975491ffd137cfa0cd3da69a32aa6a10f1f0c (patch) | |
tree | 5cc16c63b02402a59fc2b2abcafc2059ffbd774e /poi/src | |
parent | 7d47c205e9c6878b870f705d27992822098c4d04 (diff) | |
download | poi-29c975491ffd137cfa0cd3da69a32aa6a10f1f0c.tar.gz poi-29c975491ffd137cfa0cd3da69a32aa6a10f1f0c.zip |
[bug-65306] change error message
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894092 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi/src')
-rw-r--r-- | poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestSheetUpdateArrayFormulas.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestSheetUpdateArrayFormulas.java b/poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestSheetUpdateArrayFormulas.java index 8f67877635..2cb1acdfbe 100644 --- a/poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestSheetUpdateArrayFormulas.java +++ b/poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestSheetUpdateArrayFormulas.java @@ -495,7 +495,7 @@ public abstract class BaseTestSheetUpdateArrayFormulas { //we cannot set individual formulas for cells included in an array formula sheet.setArrayFormula("A1:A3*B1:B3", CellRangeAddress.valueOf("C1:C3")); IllegalStateException e = assertThrows(IllegalStateException.class, () -> sheet.shiftRows(0, 0, 1)); - String msg = "Row[rownum=0] contains cell(s) included in a multi-cell array formula. You cannot change part of an array."; + String msg = "Cell Sheet0!C2 is part of a multi-cell array formula. You cannot change part of an array."; assertEquals(msg, e.getMessage()); /* TODO: enable shifting the whole array |