summaryrefslogtreecommitdiff
path: root/test/source
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-08-31 12:39:14 +0200
committerJulien Nabet <serval2412@yahoo.fr>2020-08-31 14:51:10 +0200
commit19cf1b4fcfb9d9d17587e4224c3c3818952cd69c (patch)
treee170a37f8a0e1225637ce470f5569b60eb7b5663 /test/source
parent3dfbb9d41cf8fad3b41a9528967febcec6ea433b (diff)
Fix typo in code
It passed "make check" on Linux Change-Id: Ia1fbd635d7d13c69c9b8911eadaa86ee5f7aadb6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101707 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'test/source')
-rw-r--r--test/source/sheet/xcellrangeformula.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/source/sheet/xcellrangeformula.cxx b/test/source/sheet/xcellrangeformula.cxx
index 6de60149938f..8a2eeb220ba2 100644
--- a/test/source/sheet/xcellrangeformula.cxx
+++ b/test/source/sheet/xcellrangeformula.cxx
@@ -24,7 +24,7 @@ void XCellRangeFormula::testGetSetFormulaArray()
{
uno::Reference<sheet::XCellRangeFormula> xCRF(init(), UNO_QUERY_THROW);
- uno::Sequence<uno::Sequence<OUString>> aFormulaArrayOrginal = xCRF->getFormulaArray();
+ uno::Sequence<uno::Sequence<OUString>> aFormulaArrayOriginal = xCRF->getFormulaArray();
uno::Sequence<uno::Sequence<OUString>> aFormulaArrayNew = xCRF->getFormulaArray();
aFormulaArrayNew[0][0] = "NewValue";
@@ -32,8 +32,8 @@ void XCellRangeFormula::testGetSetFormulaArray()
CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to get new FormulaArray", OUString("NewValue"),
xCRF->getFormulaArray()[0][0]);
- xCRF->setFormulaArray(aFormulaArrayOrginal);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to set new FormulaArray", aFormulaArrayOrginal[0][0],
+ xCRF->setFormulaArray(aFormulaArrayOriginal);
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to set new FormulaArray", aFormulaArrayOriginal[0][0],
xCRF->getFormulaArray()[0][0]);
}
} // namespace apitest