summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/auto/conformance/tst_conformance.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/auto/conformance/tst_conformance.cpp b/tests/auto/conformance/tst_conformance.cpp
index f5512a9..d093637 100644
--- a/tests/auto/conformance/tst_conformance.cpp
+++ b/tests/auto/conformance/tst_conformance.cpp
@@ -281,8 +281,7 @@ void Tst_MqttConformance::zero_length_clientid_test()
if (client.protocolVersion() == QMqttClient::MQTT_5_0) {
// For MQTT 5 the broker creates an ID and returns it in CONNACK
QTRY_VERIFY2(client.state() == QMqttClient::Connected, "Could not connect to broker.");
- // ### TODO: Enable this check:
- //QVERIFY(!client.clientId().isEmpty())
+ QVERIFY(!client.clientId().isEmpty());
} else {
QTRY_VERIFY2(client.state() == QMqttClient::Disconnected, "Sessions with empty client should not be allowed.");
}