Skip to content

Commit

Permalink
tests: MixManager: Fix msvc build: usage of ""_s
Browse files Browse the repository at this point in the history
  • Loading branch information
lnjX committed Dec 7, 2024
1 parent fb14083 commit 4c755dd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/qxmppmixmanager/tst_qxmppmixmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1687,10 +1687,10 @@ void tst_QXmppMixManager::testError(QXmppTask<T> &task, TestClient &client, cons
{
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 4c755dd

Please sign in to comment.