summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
Diffstat (limited to 'sax')
-rw-r--r--sax/test/sax/testsax.cxx5
-rw-r--r--sax/test/sax/testwriter.cxx5
2 files changed, 2 insertions, 8 deletions
diff --git a/sax/test/sax/testsax.cxx b/sax/test/sax/testsax.cxx
index 8dbfdfbaac82..6b382befdab0 100644
--- a/sax/test/sax/testsax.cxx
+++ b/sax/test/sax/testsax.cxx
@@ -99,10 +99,7 @@ OUString OSaxParserTest_getImplementationName( ) throw ()
Sequence<OUString> OSaxParserTest_getSupportedServiceNames( ) throw ()
{
- Sequence<OUString> aRet(1);
-
- aRet.getArray()[0] = OSaxParserTest_getImplementationName( );
-
+ Sequence<OUString> aRet { OSaxParserTest_getImplementationName() };
return aRet;
}
diff --git a/sax/test/sax/testwriter.cxx b/sax/test/sax/testwriter.cxx
index c0af020601f2..f07097fd1bfd 100644
--- a/sax/test/sax/testwriter.cxx
+++ b/sax/test/sax/testwriter.cxx
@@ -326,10 +326,7 @@ OUString OSaxWriterTest_getImplementationName( ) throw ()
Sequence<OUString> OSaxWriterTest_getSupportedServiceNames( ) throw ()
{
- Sequence<OUString> aRet(1);
-
- aRet.getArray()[0] = OSaxWriterTest_getImplementationName( );
-
+ Sequence<OUString> aRet { OSaxWriterTest_getImplementationName( ) };
return aRet;
}