summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-09-23 19:35:35 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-09-23 20:37:56 +0200
commit14b00ade67d4f108fcd070e90e184dc256f0c880 (patch)
tree6c434eb9d915ba6f90d2c3c51280b71a31745676 /comphelper
parent3b4198d4654e4cf569f9b82d87a2498dbbecb9ac (diff)
Simplify some OUString constructions with universal character names
Change-Id: I16dcaec29de725b4308f2ef3262673e9b9cab1f4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103270 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/qa/string/test_string.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/comphelper/qa/string/test_string.cxx b/comphelper/qa/string/test_string.cxx
index abccec85691c..aa427bea8a65 100644
--- a/comphelper/qa/string/test_string.cxx
+++ b/comphelper/qa/string/test_string.cxx
@@ -69,8 +69,7 @@ void TestString::testDecimalStringToNumber()
s1 += u"\u07C6";
CPPUNIT_ASSERT_EQUAL(sal_uInt32(12346), comphelper::string::decimalStringToNumber(s1));
// Codepoints on 2 16bits words
- sal_uInt32 utf16String[] = { 0x1D7FE /* 8 */, 0x1D7F7 /* 1 */};
- s1 = OUString(utf16String, 2);
+ s1 = u"\U0001D7FE\U0001D7F7"; // MATHEMATICAL MONOSPACE DIGIT EIGHT and ONE
CPPUNIT_ASSERT_EQUAL(sal_uInt32(81), comphelper::string::decimalStringToNumber(s1));
}