diff --git a/tests/auto/qbluetoothuuid/tst_qbluetoothuuid.cpp b/tests/auto/qbluetoothuuid/tst_qbluetoothuuid.cpp index 63a77a84..604fca49 100644 --- a/tests/auto/qbluetoothuuid/tst_qbluetoothuuid.cpp +++ b/tests/auto/qbluetoothuuid/tst_qbluetoothuuid.cpp @@ -236,6 +236,8 @@ void tst_QBluetoothUuid::tst_conversion() if (constructUuid16) { QBluetoothUuid uuid(uuid16); + QCOMPARE(uuid, QBluetoothUuid(uuidS)); + bool ok; QCOMPARE(uuid.toUInt16(&ok), uuid16); @@ -254,6 +256,8 @@ void tst_QBluetoothUuid::tst_conversion() if (constructUuid32) { QBluetoothUuid uuid(uuid32); + QCOMPARE(uuid, QBluetoothUuid(uuidS)); + bool ok; quint16 tmp = uuid.toUInt16(&ok); @@ -275,6 +279,8 @@ void tst_QBluetoothUuid::tst_conversion() if (constructUuid128) { QBluetoothUuid uuid(uuid128); + QCOMPARE(uuid, QBluetoothUuid(uuidS)); + bool ok; quint16 tmpUuid16 = uuid.toUInt16(&ok);