summaryrefslogtreecommitdiff
path: root/sc/qa
diff options
context:
space:
mode:
Diffstat (limited to 'sc/qa')
-rw-r--r--sc/qa/unit/ucalc.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index 4d93eb1e24be..b6addd190211 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -1206,8 +1206,8 @@ void Test::testFormulaGrouping()
// different cell functions.
aPos1.IncRow();
aPos2.IncRow();
- m_pDoc->SetString(aPos1, "=SUM(1,2,3,4,5)");
- m_pDoc->SetString(aPos2, "=AVERAGE(1,2,3,4,5)");
+ m_pDoc->SetString(aPos1, "=SUM(1;2;3;4;5)");
+ m_pDoc->SetString(aPos2, "=AVERAGE(1;2;3;4;5)");
nHashVal1 = m_pDoc->GetFormulaHash(aPos1);
nHashVal2 = m_pDoc->GetFormulaHash(aPos2);
CPPUNIT_ASSERT_MESSAGE("These hashes should differ.", nHashVal1 != nHashVal2);
@@ -1229,6 +1229,7 @@ void Test::testFormulaGrouping()
nHashVal1 = m_pDoc->GetFormulaHash(aPos1);
CPPUNIT_ASSERT_MESSAGE("These hashes should be equal.", nHashVal1 == nHashVal2);
+ // string constant vs numeric constant.
aPos1.IncRow();
aPos2.IncRow();
m_pDoc->SetString(aPos1, "=3*4*5");