From 1fdb0e1897b063c7a0f29ed5a0de440ea057b2ed Mon Sep 17 00:00:00 2001 From: Arnaud Versini Date: Tue, 2 May 2017 13:04:17 +0200 Subject: Replace all OUString("") with OUString() Change-Id: Ie14c4d76cb61cfbe0410103adfc1afc8ade0f3e0 Reviewed-on: https://gerrit.libreoffice.org/37146 Tested-by: Jenkins Reviewed-by: Noel Grandin --- comphelper/qa/string/test_string.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'comphelper') diff --git a/comphelper/qa/string/test_string.cxx b/comphelper/qa/string/test_string.cxx index 7135c81cb0cf..eb36e06355dd 100644 --- a/comphelper/qa/string/test_string.cxx +++ b/comphelper/qa/string/test_string.cxx @@ -401,7 +401,7 @@ void TestString::testRemoveAny() sal_Unicode const test6 [] = { 'X', 0 }; CPPUNIT_ASSERT_EQUAL(in, removeAny(in, test6)); sal_Unicode const test7 [] = { 'A', 'B', 'C', 'a', 'b', 'c', 0 }; - CPPUNIT_ASSERT_EQUAL(OUString(""), removeAny(in, test7)); + CPPUNIT_ASSERT_EQUAL(OUString(), removeAny(in, test7)); } CPPUNIT_TEST_SUITE_REGISTRATION(TestString); -- cgit