diff options
-rw-r--r-- | sc/qa/unit/ucalc_formula.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/qa/unit/ucalc_formula.cxx b/sc/qa/unit/ucalc_formula.cxx index b2bfb37638cc..f5f65bf3d97d 100644 --- a/sc/qa/unit/ucalc_formula.cxx +++ b/sc/qa/unit/ucalc_formula.cxx @@ -3926,6 +3926,9 @@ void Test::testFuncIF() m_pDoc->SetValue(ScAddress(1,0,0), 3.0); CPPUNIT_ASSERT_EQUAL(OUString("not two"), m_pDoc->GetString(ScAddress(0,0,0))); +/* FIXME: temporarily disabled because e54cd3fbf40300416ef337981bd356b88ad44a41 + * reverted; reactivate when fixed again. */ +#if 0 // Test nested IF in array/matrix. ScMarkData aMark; aMark.SelectOneTable(0); @@ -3933,6 +3936,7 @@ void Test::testFuncIF() // Results must be 23 and 42. CPPUNIT_ASSERT_EQUAL(23.0, m_pDoc->GetValue(ScAddress(0,2,0))); CPPUNIT_ASSERT_EQUAL(42.0, m_pDoc->GetValue(ScAddress(1,2,0))); +#endif m_pDoc->DeleteTab(0); } |