From 3a355887caacea0ec1c3688d64a2cb85a1fc4c74 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Wed, 3 Jan 2018 10:31:06 +0100 Subject: Fix typos Change-Id: I3f4ad9eff0730d3deea96b37fa7f36dfd038b214 Reviewed-on: https://gerrit.libreoffice.org/47301 Tested-by: Jenkins Reviewed-by: Julien Nabet --- test/source/sheet/tablevalidation.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/source/sheet/tablevalidation.cxx b/test/source/sheet/tablevalidation.cxx index e953e0f2f111..24d2ace8d644 100644 --- a/test/source/sheet/tablevalidation.cxx +++ b/test/source/sheet/tablevalidation.cxx @@ -142,12 +142,12 @@ void TableValidation::testTableValidationProperties() propName = "ShowList"; sal_Int16 aShowList = 0; CPPUNIT_ASSERT(xTableValidation->getPropertyValue(propName) >>= aShowList); - CPPUNIT_ASSERT_EQUAL_MESSAGE("Unabel to get property value ShowList", sal_Int16(1), aShowList); + CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to get property value ShowList", sal_Int16(1), aShowList); aNewValue <<= sal_Int16(42); xTableValidation->setPropertyValue(propName, aNewValue); CPPUNIT_ASSERT(xTableValidation->getPropertyValue(propName) >>= aShowList); - CPPUNIT_ASSERT_EQUAL_MESSAGE("Unabel to set property value ShowList", sal_Int16(42), aShowList); + CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to set property value ShowList", sal_Int16(42), aShowList); } } -- cgit