summaryrefslogtreecommitdiffstats
path: root/tests/auto/other/qaccessibility/tst_qaccessibility.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/other/qaccessibility/tst_qaccessibility.cpp')
-rw-r--r--tests/auto/other/qaccessibility/tst_qaccessibility.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/other/qaccessibility/tst_qaccessibility.cpp b/tests/auto/other/qaccessibility/tst_qaccessibility.cpp
index b3ac7489b7..d11d28206b 100644
--- a/tests/auto/other/qaccessibility/tst_qaccessibility.cpp
+++ b/tests/auto/other/qaccessibility/tst_qaccessibility.cpp
@@ -2882,8 +2882,8 @@ void tst_QAccessibility::listTest()
QCOMPARE(cellInterface->columnIndex(), 0);
QCOMPARE(cellInterface->rowExtent(), 1);
QCOMPARE(cellInterface->columnExtent(), 1);
- QCOMPARE(cellInterface->rowHeaderCells(), QList<QAccessibleInterface*>());
- QCOMPARE(cellInterface->columnHeaderCells(), QList<QAccessibleInterface*>());
+ QVERIFY(cellInterface->rowHeaderCells().isEmpty());
+ QVERIFY(cellInterface->columnHeaderCells().isEmpty());
QCOMPARE(cellInterface->table()->object(), listView);