QHttp2Connection: Avoid warning about different signedness

(...)/qtbase/src/testlib/qtestcase.h:626:34: warning: comparison of integers of different signs: 'const long long' and 'const unsigned long' [-Wsign-compare]
        return compare_helper(t1 == t2, "Compared values are not the same",
                              ~~ ^  ~~
(...)/home/qtrob/dev/src/qt-dev_08.14-base_imageformats_svg/qtbase/tests/auto/network/access/qhttp2connection/tst_qhttp2connection.cpp:490:9: note: in instantiation of function template specialization 'QTest::qCompare<long long, unsigned long>' requested here
        QCOMPARE(writtenN, buffer.size());
        ^
(...)/home/qtrob/dev/src/qt-dev_08.14-base_imageformats_svg/qtbase/src/testlib/qtestcase.h:83:17: note: expanded from macro 'QCOMPARE'
    if (!QTest::qCompare(actual, expected, #actual, #expected, __FILE__, __LINE__))\
                ^

Change-Id: I4c09dbbd3105b3a760a9ecde53dd0e8c26c1626e
Reviewed-by: Matthias Rauter <matthias.rauter@qt.io>
This commit is contained in:
Robert Löhning 2024-08-14 10:54:55 +02:00
parent 00644f4b6d
commit 991df1a513

View File

@ -487,7 +487,7 @@ void tst_QHttp2Connection::testBadFrameSize()
buffer[2] = size; buffer[2] = size;
auto writtenN = connection->getSocket()->write(reinterpret_cast<const char *>(&buffer[0]), buffer.size()); auto writtenN = connection->getSocket()->write(reinterpret_cast<const char *>(&buffer[0]), buffer.size());
QCOMPARE(writtenN, buffer.size()); QCOMPARE(writtenN, qint64(buffer.size()));
} }
QCOMPARE(rstClientSpy.wait(), rst_received); QCOMPARE(rstClientSpy.wait(), rst_received);