diff options
Diffstat (limited to 'src/ooxml/testcases/org/apache/poi/xssf/model/TestCalculationChain.java')
-rw-r--r-- | src/ooxml/testcases/org/apache/poi/xssf/model/TestCalculationChain.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ooxml/testcases/org/apache/poi/xssf/model/TestCalculationChain.java b/src/ooxml/testcases/org/apache/poi/xssf/model/TestCalculationChain.java index 32ff49c9f7..80e5f52510 100644 --- a/src/ooxml/testcases/org/apache/poi/xssf/model/TestCalculationChain.java +++ b/src/ooxml/testcases/org/apache/poi/xssf/model/TestCalculationChain.java @@ -32,7 +32,7 @@ public final class TestCalculationChain extends TestCase { CalculationChain chain = wb.getCalculationChain(); //the bean holding the reference to the formula to be deleted CTCalcCell c = chain.getCTCalcChain().getCArray(0); - int cnt = chain.getCTCalcChain().getCArray().length; + int cnt = chain.getCTCalcChain().getCList().size(); assertEquals(10, c.getI()); assertEquals("E1", c.getR()); @@ -44,7 +44,7 @@ public final class TestCalculationChain extends TestCase { //the count of items is less by one c = chain.getCTCalcChain().getCArray(0); - int cnt2 = chain.getCTCalcChain().getCArray().length; + int cnt2 = chain.getCTCalcChain().getCList().size(); assertEquals(cnt - 1, cnt2); //the first item in the calculation chain is the former second one assertEquals(10, c.getI()); |