From ccdc2bd18eb41d27181fc38da4e03ad5eadc5340 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20St=C3=BCrz?= Date: Wed, 13 Apr 2016 14:26:07 +0200 Subject: [PATCH] fix debug in coap test --- tests/auto/coap/coaptests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/coap/coaptests.cpp b/tests/auto/coap/coaptests.cpp index 244b382a..bb20aa73 100644 --- a/tests/auto/coap/coaptests.cpp +++ b/tests/auto/coap/coaptests.cpp @@ -159,7 +159,7 @@ void CoapTests::hello() QSignalSpy spy(m_coap, SIGNAL(replyFinished(CoapReply*))); CoapReply *reply = m_coap->get(request); - qDebug() << reply->isRunning() << reply->requestData() << reply->errorString(); + qDebug() << reply->isRunning() << reply->errorString(); spy.wait(); QVERIFY2(spy.count() > 0, "Did not get a response.");