From 19cf1b4fcfb9d9d17587e4224c3c3818952cd69c Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Mon, 31 Aug 2020 12:39:14 +0200 Subject: 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 Tested-by: Jenkins --- test/source/sheet/xcellrangeformula.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/source') 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 xCRF(init(), UNO_QUERY_THROW); - uno::Sequence> aFormulaArrayOrginal = xCRF->getFormulaArray(); + uno::Sequence> aFormulaArrayOriginal = xCRF->getFormulaArray(); uno::Sequence> 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 -- cgit