diff options
Diffstat (limited to 'tests/qxmppstanza/tst_qxmppstanza.cpp')
| -rw-r--r-- | tests/qxmppstanza/tst_qxmppstanza.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/qxmppstanza/tst_qxmppstanza.cpp b/tests/qxmppstanza/tst_qxmppstanza.cpp index 22878557..807a9c03 100644 --- a/tests/qxmppstanza/tst_qxmppstanza.cpp +++ b/tests/qxmppstanza/tst_qxmppstanza.cpp @@ -46,14 +46,14 @@ void tst_QXmppStanza::testExtendedAddress_data() QTest::addColumn<QString>("type"); QTest::newRow("simple") - << QByteArray("<address jid=\"foo@example.com/QXmpp\" type=\"bcc\"/>") + << QByteArray(R"(<address jid="foo@example.com/QXmpp" type="bcc"/>)") << false << QString() << QString("foo@example.com/QXmpp") << QString("bcc"); QTest::newRow("full") - << QByteArray("<address delivered=\"true\" desc=\"some description\" jid=\"foo@example.com/QXmpp\" type=\"bcc\"/>") + << QByteArray(R"(<address delivered="true" desc="some description" jid="foo@example.com/QXmpp" type="bcc"/>)") << true << QString("some description") << QString("foo@example.com/QXmpp") |
