diff options
Diffstat (limited to 'svtools/qa')
-rw-r--r-- | svtools/qa/unit/testHtmlReader.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/qa/unit/testHtmlReader.cxx b/svtools/qa/unit/testHtmlReader.cxx index 5605060eab34..d50da0d3cd97 100644 --- a/svtools/qa/unit/testHtmlReader.cxx +++ b/svtools/qa/unit/testHtmlReader.cxx @@ -62,7 +62,7 @@ CPPUNIT_TEST_FIXTURE(Test, testTdf114428) // This was '<?xml version="1.0" encoding="utf-8"?> hello', XML declaration // was not ignored. - CPPUNIT_ASSERT_EQUAL(OUString("hello"), xParser->m_aDocument.trim()); + CPPUNIT_ASSERT_EQUAL(u"hello"_ustr, xParser->m_aDocument.trim()); } CPPUNIT_TEST_FIXTURE(Test, testLineBreak) @@ -97,7 +97,7 @@ CPPUNIT_TEST_FIXTURE(Test, testCdata) // - Expected: B ü < // - Actual : // i.e. the content inside CDATA was lost. - CPPUNIT_ASSERT_EQUAL(OUString("B ü <"), xParser->m_aCdata); + CPPUNIT_ASSERT_EQUAL(u"B ü <"_ustr, xParser->m_aCdata); } } |