Skip to content

Commit

Permalink
tests: MovedManager: Fix ""_s literals with MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
lnjX committed Oct 21, 2024
1 parent a228a32 commit 8542082
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/qxmppmovedmanager/tst_qxmppmovedmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -294,10 +294,10 @@ void tst_QXmppMovedManager::testError(QXmppTask<T> &task, TestClient &client, co
{
client.ignore();
client.inject(u"<iq id='%1' from='%2' type='error'>"
"<error type='cancel'>"
"<not-allowed xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>"
"</error>"
"</iq>"_s
u"<error type='cancel'>"
u"<not-allowed xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>"
u"</error>"
u"</iq>"_s
.arg(id, from));

expectFutureVariant<QXmppError>(task);
Expand Down

0 comments on commit 8542082

Please sign in to comment.