summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-18 17:57:46 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-18 17:57:46 +0100
commit11f20999040e97c052c0015e3265de2a68cee666 (patch)
treeec8c14cc8150bc922bcab532393dbca4019e9177 /test
parent09e071fdddde4077d412708ba12f4561b70f6b34 (diff)
test: Use appropriate OUString functions on string constants
Change-Id: Idbdc5c9aab8fa65df39d66da2461337db6350e52
Diffstat (limited to 'test')
-rw-r--r--test/source/bootstrapfixture.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/source/bootstrapfixture.cxx b/test/source/bootstrapfixture.cxx
index ac30e5c3f3cf..f6f100aefb3c 100644
--- a/test/source/bootstrapfixture.cxx
+++ b/test/source/bootstrapfixture.cxx
@@ -173,7 +173,7 @@ void test::BootstrapFixture::validate(const OUString& rPath, test::ValidationFor
int returnValue = system(OUStringToOString(aCommand, RTL_TEXTENCODING_UTF8).getStr());
CPPUNIT_ASSERT_EQUAL_MESSAGE(
- OUStringToOString(OUString("failed to execute: ") + aCommand,
+ OUStringToOString("failed to execute: " + aCommand,
RTL_TEXTENCODING_UTF8).getStr(), 0, returnValue);
OString aContentString = loadFile(aOutput.GetURL());