diff options
author | Josh Micich <josh@apache.org> | 2009-11-13 20:46:02 +0000 |
---|---|---|
committer | Josh Micich <josh@apache.org> | 2009-11-13 20:46:02 +0000 |
commit | 1d112a3341a21ad101aeae62843aac8b7147b41a (patch) | |
tree | 412358a87a0f08c011fa9328c7cdc05b928921e5 /src/testcases/org/apache/poi/hssf | |
parent | 082cd1846c20ef50796433163da7977c31898d3c (diff) | |
download | poi-1d112a3341a21ad101aeae62843aac8b7147b41a.tar.gz poi-1d112a3341a21ad101aeae62843aac8b7147b41a.zip |
Cleaned up AttrPtg - made immutable, fixed property accessors.
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@835982 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/testcases/org/apache/poi/hssf')
-rw-r--r-- | src/testcases/org/apache/poi/hssf/model/TestFormulaParserIf.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testcases/org/apache/poi/hssf/model/TestFormulaParserIf.java b/src/testcases/org/apache/poi/hssf/model/TestFormulaParserIf.java index ae4245ec4b..51f9cf5d97 100644 --- a/src/testcases/org/apache/poi/hssf/model/TestFormulaParserIf.java +++ b/src/testcases/org/apache/poi/hssf/model/TestFormulaParserIf.java @@ -202,7 +202,7 @@ public final class TestFormulaParserIf extends TestCase { assertEquals("Y", y.getValue()); assertEquals("N", n.getValue()); assertEquals("IF", funif.toFormulaString()); - assertTrue("Goto ptg exists", goto1.isGoto()); + assertTrue("tAttrSkip ptg exists", goto1.isSkip()); } /** * Make sure the ptgs are generated properly with two functions embedded |