summaryrefslogtreecommitdiffstats
path: root/tests/auto/qtextdocumentfragment
diff options
context:
space:
mode:
authorPaul Olav Tvete <paul.tvete@nokia.com>2009-04-17 16:52:47 +0200
committerPaul Olav Tvete <paul.tvete@nokia.com>2009-04-17 16:52:47 +0200
commit7a02f249edc179426159e66680ca4421c3c44309 (patch)
tree2de4f94705c9ceb78d0bf26fd2af0b1255ad42cc /tests/auto/qtextdocumentfragment
parent9f262b977d99a4b2729cc3c17ee60f244a15f67d (diff)
compile
heh, it was perfectly safe to remove the QT_VERSION ifdefs, but QT_VERISON was another matter...
Diffstat (limited to 'tests/auto/qtextdocumentfragment')
-rw-r--r--tests/auto/qtextdocumentfragment/tst_qtextdocumentfragment.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qtextdocumentfragment/tst_qtextdocumentfragment.cpp b/tests/auto/qtextdocumentfragment/tst_qtextdocumentfragment.cpp
index 6edaee3f96..46f5f0c5ac 100644
--- a/tests/auto/qtextdocumentfragment/tst_qtextdocumentfragment.cpp
+++ b/tests/auto/qtextdocumentfragment/tst_qtextdocumentfragment.cpp
@@ -2309,7 +2309,7 @@ void tst_QTextDocumentFragment::html_tbody()
QVERIFY(table);
QCOMPARE(table->columns(), 1);
QCOMPARE(table->rows(), 2);
- QVERIFY(table->format().headerRowCount(), 1);
+ QCOMPARE(table->format().headerRowCount(), 1);
QCOMPARE(table->cellAt(0, 0).firstCursorPosition().block().text(), QString("First Cell"));
QCOMPARE(table->cellAt(1, 0).firstCursorPosition().block().text(), QString("Second Cell"));
}