diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-11 18:30:57 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-08-12 11:43:04 +0200 |
commit | ec3a14ba93ba0be49170afa979f299bbf9e24300 (patch) | |
tree | a04d0d29389db1643549216aee0d52911cb767e4 /stoc | |
parent | ba6519a800da9f105953436e3e70701850d4e3dc (diff) |
Fix typos
Change-Id: Ia44a9dd214b5b09ed6f9c39b8057c41ae03897f1
Reviewed-on: https://gerrit.libreoffice.org/77285
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/test/testregistry.cxx | 4 | ||||
-rw-r--r-- | stoc/test/testsmgr_cpnt.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
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<sal_Int8> 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() ); |