From f553e4b4c37c3ff33f167ea9264115474f666097 Mon Sep 17 00:00:00 2001 From: Edward Welbourne Date: Thu, 15 Sep 2022 12:17:22 +0200 Subject: [PATCH] tst_QDom: replace a final u"..."_qs (deprecated) with u"..."_s It seems all the others have had this treatment, but one got missed or added while the others were being fixed. Change-Id: If47e2c6bf939b7a55f2c38b029c1df3a901e8bfc Reviewed-by: Sona Kurazyan --- tests/auto/xml/dom/qdom/tst_qdom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/xml/dom/qdom/tst_qdom.cpp b/tests/auto/xml/dom/qdom/tst_qdom.cpp index 47412dc8f0..aa03106270 100644 --- a/tests/auto/xml/dom/qdom/tst_qdom.cpp +++ b/tests/auto/xml/dom/qdom/tst_qdom.cpp @@ -1588,7 +1588,7 @@ void tst_QDom::nonBMPCharacters() [invalidDataPolicy] { QDomImplementation::setInvalidDataPolicy(invalidDataPolicy); }); QDomImplementation::setInvalidDataPolicy(QDomImplementation::DropInvalidChars); - const QString input = u"Supplementary Plane: 𝄞 😂 🀄 🀶 🃪 🃋"_qs; + const QString input = u"Supplementary Plane: 𝄞 😂 🀄 🀶 🃪 🃋"_s; QDomDocument doc; QVERIFY(doc.setContent(input, QDomDocument::ParseOption::Default));