aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qml/qqmldelegatemodel/tst_qqmldelegatemodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qml/qqmldelegatemodel/tst_qqmldelegatemodel.cpp b/tests/auto/qml/qqmldelegatemodel/tst_qqmldelegatemodel.cpp
index 1a772b8a1e..0980d8b8ca 100644
--- a/tests/auto/qml/qqmldelegatemodel/tst_qqmldelegatemodel.cpp
+++ b/tests/auto/qml/qqmldelegatemodel/tst_qqmldelegatemodel.cpp
@@ -162,7 +162,7 @@ void tst_QQmlDelegateModel::filterOnGroup_removeWhenCompleted()
QVERIFY(root);
QQmlDelegateModel *model = root->findChild<QQmlDelegateModel*>();
QVERIFY(model);
- QTest::qWaitFor([=]{ return model->count() == 2; } );
+ QVERIFY(QTest::qWaitFor([=]{ return model->count() == 2; }));
}
QTEST_MAIN(tst_QQmlDelegateModel)