summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2017-12-09 16:56:20 +0100
committerJulien Nabet <serval2412@yahoo.fr>2017-12-10 10:32:11 +0100
commit06e5bd866b8c0bdb2d5686a3b446151abb8983fb (patch)
tree3b7026c852b90ba7462ad28b89b148b293706e7d /test
parentce652a7f0d2745143a3e1078607a72695ce124f9 (diff)
Fix typos
Change-Id: I2de8448564c963d3361a828bb96dcdb15eddf717 Reviewed-on: https://gerrit.libreoffice.org/46151 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'test')
-rw-r--r--test/source/sheet/xdatabaseranges.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/source/sheet/xdatabaseranges.cxx b/test/source/sheet/xdatabaseranges.cxx
index 972631014e64..491e980fc468 100644
--- a/test/source/sheet/xdatabaseranges.cxx
+++ b/test/source/sheet/xdatabaseranges.cxx
@@ -31,14 +31,14 @@ void XDatabaseRanges::testAddRemoveDbRanges()
CPPUNIT_ASSERT_MESSAGE("Unable to add new db range", xDbRanges->hasByName("addNewRange"));
CPPUNIT_ASSERT_THROW_MESSAGE(
- "No execption thrown, when adding range with existing name",
+ "No exception thrown, when adding range with existing name",
xDbRanges->addNewByName("addNewRange", table::CellRangeAddress(0, 1, 2, 3, 4)),
css::uno::RuntimeException);
xDbRanges->removeByName("addNewRange");
CPPUNIT_ASSERT_MESSAGE("Unable to remove db range", !xDbRanges->hasByName("addNewRange"));
- CPPUNIT_ASSERT_THROW_MESSAGE("No execption, when removing none-existing range",
+ CPPUNIT_ASSERT_THROW_MESSAGE("No exception, when removing none-existing range",
xDbRanges->removeByName("addNewRange"),
css::uno::RuntimeException);
}