summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-01-03 10:31:06 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-01-03 12:19:33 +0100
commit3a355887caacea0ec1c3688d64a2cb85a1fc4c74 (patch)
tree38e5a08195b72b1e9716f9c717516cde27e884b1 /test
parent1b666235f6b0b0f0b13f473bf3b639f4f5f0b12f (diff)
Fix typos
Change-Id: I3f4ad9eff0730d3deea96b37fa7f36dfd038b214 Reviewed-on: https://gerrit.libreoffice.org/47301 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'test')
-rw-r--r--test/source/sheet/tablevalidation.cxx4
1 files changed, 2 insertions, 2 deletions
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);
}
}