summaryrefslogtreecommitdiff
path: root/sc/qa
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-10 10:37:53 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-10 14:18:04 +0200
commit0c234a60ae31c2404dfec9d09cc79a1a5c4558fd (patch)
treed6139e8b035e9fc5f5f36bbfb9d0e0bc7c859b9f /sc/qa
parentb86ab7eb8b14b877c93be23bfc944e629e080573 (diff)
Fix typos
Change-Id: I79f87f033eeb67d1750bb595d311d74ef3db6ce9 Reviewed-on: https://gerrit.libreoffice.org/78795 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'sc/qa')
-rw-r--r--sc/qa/unit/ucalc_formula.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sc/qa/unit/ucalc_formula.cxx b/sc/qa/unit/ucalc_formula.cxx
index a82f456f2d28..55749266ffb5 100644
--- a/sc/qa/unit/ucalc_formula.cxx
+++ b/sc/qa/unit/ucalc_formula.cxx
@@ -7805,7 +7805,7 @@ void Test::testFuncGCD()
CPPUNIT_ASSERT_EQUAL_MESSAGE("Calculation of GCD for failed", 10.0, m_pDoc->GetValue(aPos));
m_pDoc->SetValue(0, 0, 0, -2.0); // A1
aVal = m_pDoc->GetString(aPos);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("GCD should return Err:502 for values less then 0",
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("GCD should return Err:502 for values less than 0",
OUString("Err:502"), aVal);
m_pDoc->SetString(0, 0, 0, "a"); // A1
aVal = m_pDoc->GetString(aPos);
@@ -7816,7 +7816,7 @@ void Test::testFuncGCD()
CPPUNIT_ASSERT_EQUAL_MESSAGE("Calculation of GCD for failed", 0.0, m_pDoc->GetValue(aPos));
m_pDoc->SetValue(0, 1, 0, -12.0); // B1
aVal = m_pDoc->GetString(aPos);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("GCD should return Err:502 for a matrix with values less then 0",
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("GCD should return Err:502 for a matrix with values less than 0",
OUString("Err:502"), aVal);
m_pDoc->SetValue(0, 0, 0, 15.0); // A1
m_pDoc->SetValue(0, 1, 0, 0.0); // B1
@@ -7854,7 +7854,7 @@ void Test::testFuncGCD()
CPPUNIT_ASSERT_EQUAL_MESSAGE("Calculation of GCD for failed", 150.0, m_pDoc->GetValue(aPos));
m_pDoc->SetString(aPos, "=GCD({-3;6;9})");
aVal = m_pDoc->GetString(aPos);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("GCD should return Err:502 for an array with values less then 0",
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("GCD should return Err:502 for an array with values less than 0",
OUString("Err:502"), aVal);
m_pDoc->SetString(aPos, "=GCD({\"a\";6;9})");
aVal = m_pDoc->GetString(aPos);
@@ -7868,7 +7868,7 @@ void Test::testFuncGCD()
CPPUNIT_ASSERT_EQUAL_MESSAGE("Calculation of GCD for failed", 150.0, m_pDoc->GetValue(aPos));
m_pDoc->SetString(aPos,"=GCD({3;6;9};{3;-6;9})");
aVal = m_pDoc->GetString(aPos);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("GCD should return Err:502 for an array with values less then 0",
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("GCD should return Err:502 for an array with values less than 0",
OUString("Err:502"), aVal);
m_pDoc->SetString(aPos, "=GCD({3;6;9};{\"a\";6;9})");
aVal = m_pDoc->GetString(aPos);
@@ -7903,7 +7903,7 @@ void Test::testFuncLCM()
CPPUNIT_ASSERT_EQUAL_MESSAGE("Calculation of LCM for failed", 10.0, m_pDoc->GetValue(aPos));
m_pDoc->SetValue(0, 0, 0, -2.0); // A1
aVal = m_pDoc->GetString(aPos);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("LCM should return Err:502 for values less then 0",
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("LCM should return Err:502 for values less than 0",
OUString("Err:502"), aVal);
m_pDoc->SetString(0, 0, 0, "a"); // A1
aVal = m_pDoc->GetString(aPos);
@@ -7914,7 +7914,7 @@ void Test::testFuncLCM()
CPPUNIT_ASSERT_EQUAL_MESSAGE("Calculation of GCD for failed", 1.0, m_pDoc->GetValue(aPos));
m_pDoc->SetValue(0, 1, 0, -12.0); // B1
aVal = m_pDoc->GetString(aPos);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("LCM should return Err:502 for a matrix with values less then 0",
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("LCM should return Err:502 for a matrix with values less than 0",
OUString("Err:502"), aVal);
m_pDoc->SetValue(0, 0, 0, 15.0); // A1
m_pDoc->SetValue(0, 1, 0, 0.0); // A2
@@ -7951,7 +7951,7 @@ void Test::testFuncLCM()
CPPUNIT_ASSERT_EQUAL_MESSAGE("Calculation of LCM for failed", 0.0, m_pDoc->GetValue(aPos));
m_pDoc->SetString(aPos, "=LCM({-3;6;9})");
aVal = m_pDoc->GetString(aPos);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("LCM should return Err:502 for an array with values less then 0",
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("LCM should return Err:502 for an array with values less than 0",
OUString("Err:502"), aVal);
m_pDoc->SetString(aPos, "=LCM({\"a\";6;9})");
aVal = m_pDoc->GetString(aPos);
@@ -7965,7 +7965,7 @@ void Test::testFuncLCM()
CPPUNIT_ASSERT_EQUAL_MESSAGE("Calculation of LCM for failed", 0.0, m_pDoc->GetValue(aPos));
m_pDoc->SetString(aPos,"=LCM({3;6;9};{3;-6;9})");
aVal = m_pDoc->GetString(aPos);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("LCM should return Err:502 for an array with values less then 0",
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("LCM should return Err:502 for an array with values less than 0",
OUString("Err:502"), aVal);
m_pDoc->SetString(aPos, "=LCM({3;6;9};{\"a\";6;9})");
aVal = m_pDoc->GetString(aPos);