mirror of https://github.com/qt/qtcoap.git
Fix the build with the latest dev and update dependencies
The build failing after d7ccd8cb4565c8643b158891c9de3187c1586dc9 and update dependencies.yaml. Fixes: QTBUG-85896 Change-Id: I52e4dfea4edf0b96de3387f36168bbd18b1cf097 Reviewed-by: Maurice Kalinowski <maurice.kalinowski@qt.io>
This commit is contained in:
parent
a0ab76a6f5
commit
5598329329
|
@ -1,4 +1,4 @@
|
|||
dependencies:
|
||||
../qtbase:
|
||||
ref: bcc3472aa231d0a65351b73ce9c75f7688be6623
|
||||
ref: bbb3619a13526da5ec39fbfd62ab2e8150ed4fc3
|
||||
required: true
|
||||
|
|
|
@ -160,7 +160,7 @@ void tst_QCoapInternalReply::parseReplyPdu()
|
|||
QCOMPARE(option.length(), optionsLengths.at(i));
|
||||
QCOMPARE(option.opaqueValue(), optionsValues.at(i));
|
||||
}
|
||||
QCOMPARE(reply->message()->payload(), payload);
|
||||
QCOMPARE(reply->message()->payload(), payload.toUtf8());
|
||||
}
|
||||
|
||||
void tst_QCoapInternalReply::updateReply_data()
|
||||
|
|
|
@ -159,7 +159,7 @@ void tst_QCoapInternalRequest::requestToFrame()
|
|||
request.addOption(QCoapOption::Size1, QByteArray("abcdefghijklmnopqrstuvwxyz"));
|
||||
|
||||
QByteArray pdu;
|
||||
pdu.append(pduHeader);
|
||||
pdu.append(pduHeader.toUtf8());
|
||||
if (!pduPayload.isEmpty())
|
||||
pdu.append(pduPayload.toUtf8().toHex());
|
||||
|
||||
|
|
Loading…
Reference in New Issue