Remove useless QVERIFY(true)

More QVERIFY()s were added in the meanwhile to the test function,
so we can drop this one.

Change-Id: If6f137f45ba606b61d6a7004556a667ed316b61f
Reviewed-by: Olivier Goffart <ogoffart@woboq.com>
bb10
Giuseppe D'Angelo 2012-12-16 21:19:24 +01:00 committed by The Qt Project
parent 7d685afe5d
commit 058c029b1e
1 changed files with 0 additions and 2 deletions

View File

@ -4892,8 +4892,6 @@ void tst_QObject::connectCxx0xTypeMatching()
QVERIFY(QObject::connect(&obj, &Foo::const_signal_vi, &obj, &Foo::slot_vi));
QVERIFY(QObject::connect(&obj, &Foo::signal_vi, &obj, &Foo::const_slot_vi));
QVERIFY(QObject::connect(&obj, &Foo::signal_vi, &obj, &Foo::const_slot_v));
QVERIFY(true); //compilation only test
}
class StringVariant : public QObject