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 <sona.kurazyan@qt.io>
bb10
Edward Welbourne 2022-09-15 12:17:22 +02:00
parent 75d59c9502
commit f553e4b4c3
1 changed files with 1 additions and 1 deletions

View File

@ -1588,7 +1588,7 @@ void tst_QDom::nonBMPCharacters()
[invalidDataPolicy] { QDomImplementation::setInvalidDataPolicy(invalidDataPolicy); });
QDomImplementation::setInvalidDataPolicy(QDomImplementation::DropInvalidChars);
const QString input = u"<text>Supplementary Plane: 𝄞 😂 🀄 🀶 🃪 🃋</text>"_qs;
const QString input = u"<text>Supplementary Plane: 𝄞 😂 🀄 🀶 🃪 🃋</text>"_s;
QDomDocument doc;
QVERIFY(doc.setContent(input, QDomDocument::ParseOption::Default));