Skip to content

Commit

Permalink
tests: omemodata: Fix compilation with Qt 6 and C++17
Browse files Browse the repository at this point in the history
  • Loading branch information
lnjX committed Feb 13, 2024
1 parent 40528ef commit b3325f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/qxmppomemodata/tst_qxmppomemodata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ void tst_QXmppOmemoData::testOmemoDeviceBundle()
"</prekeys>"
"</bundle>"));

const auto xmls = QVector({ xml1, xml2 });
QVector<QByteArray> xmls = { xml1, xml2 };

QHash<uint32_t, QByteArray> expectedPublicPreKeys = {
{ 1, QByteArray::fromBase64(QByteArrayLiteral("eDM2cnBiTmo4MmRGQ1RYTkZ0YnVwajJtNWdPdzkxZ0gK")) },
Expand Down

0 comments on commit b3325f8

Please sign in to comment.