summaryrefslogtreecommitdiff
path: root/stoc/test/testregistry.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'stoc/test/testregistry.cxx')
-rw-r--r--stoc/test/testregistry.cxx4
1 files changed, 2 insertions, 2 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" )