summaryrefslogtreecommitdiff
path: root/stoc/test
diff options
context:
space:
mode:
Diffstat (limited to 'stoc/test')
-rw-r--r--stoc/test/testregistry.cxx4
-rw-r--r--stoc/test/testsmgr_cpnt.cxx2
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() );