From 3ed273a6ed5ba4803e87d2dbb50eafae5a51aeac Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Mon, 10 Apr 2006 10:51:56 +0000 Subject: * test/qt/tst_hal.cpp: Remove the waiting, since it's not needed anymore. Requires Qt 4.1.3 to work properly. (r528148) --- ChangeLog | 5 +++++ test/qt/tst_hal.cpp | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index e57ae059..e39a985d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-04-10 Thiago Macieira + + * test/qt/tst_hal.cpp: Remove the waiting, since it's not + needed anymore. Requires Qt 4.1.3 to work properly. (r528148) + 2006-04-10 Thiago Macieira Merge from Subversion: diff --git a/test/qt/tst_hal.cpp b/test/qt/tst_hal.cpp index 57c9b46d..f98eb98a 100644 --- a/test/qt/tst_hal.cpp +++ b/test/qt/tst_hal.cpp @@ -51,7 +51,7 @@ void tst_Hal::getDevices() QDBusMessage reply = con.sendWithReply(msg); QVERIFY(!reply.isEmpty()); QVERIFY(reply.type() == QDBusMessage::ReplyMessage); - qDebug() << reply; + //qDebug() << reply; } void tst_Hal::lock() @@ -70,8 +70,8 @@ void tst_Hal::lock() msg << "No reason..."; QDBusMessage reply = con.sendWithReply(msg); - QTest::qWait(200); - qDebug() << reply; + //QTest::qWait(200); + //qDebug() << reply; QCOMPARE(spy.count, 3); QCOMPARE(reply.type(), QDBusMessage::ReplyMessage); } -- cgit