From ec3a14ba93ba0be49170afa979f299bbf9e24300 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Sun, 11 Aug 2019 18:30:57 +0200 Subject: Fix typos Change-Id: Ia44a9dd214b5b09ed6f9c39b8057c41ae03897f1 Reviewed-on: https://gerrit.libreoffice.org/77285 Tested-by: Jenkins Reviewed-by: Julien Nabet --- stoc/test/testregistry.cxx | 4 ++-- stoc/test/testsmgr_cpnt.cxx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'stoc') diff --git a/stoc/test/testregistry.cxx b/stoc/test/testregistry.cxx index 6e74998c7980..d81328ac6f37 100644 --- a/stoc/test/testregistry.cxx +++ b/stoc/test/testregistry.cxx @@ -215,7 +215,7 @@ void test_SimpleRegistry( xSubKey->setAsciiValue(OUString( "I'm an ascii value" )); xSubKey = xKey->createKey(OUString( "ThirdSubKey" )); - xSubKey->setStringValue(OUString( "I'm an Unicode value" )); + xSubKey->setStringValue(OUString( "I'm a Unicode value" )); xSubKey = xKey->createKey(OUString( "FourthSubKey" )); Sequence aSeq((sal_Int8*)"I'm a binary value", 25); @@ -242,7 +242,7 @@ void test_SimpleRegistry( } else if (name == "/FirstKey/ThirdSubKey" ) { - OSL_ENSURE( xSubKey->getStringValue() == "I'm an Unicode value", + OSL_ENSURE( xSubKey->getStringValue() == "I'm a Unicode value", "test_SimpleRegistry error 12" ); } else if (name == "/FirstKey/FourthSubKey" ) diff --git a/stoc/test/testsmgr_cpnt.cxx b/stoc/test/testsmgr_cpnt.cxx index ddb6e4ca1b29..b09bb7ea3a45 100644 --- a/stoc/test/testsmgr_cpnt.cxx +++ b/stoc/test/testsmgr_cpnt.cxx @@ -205,7 +205,7 @@ extern "C" void SAL_CALL test_ServiceManager() } OSL_ENSURE( nLen == 8, "more than 6 factories" ); - // try to get an instance for a unknown service + // try to get an instance for an unknown service OSL_VERIFY( !xSMgr->createInstance("bla.blup.Q").is() ); -- cgit