summaryrefslogtreecommitdiffstats
path: root/tests/auto/qheaderview
diff options
context:
space:
mode:
authorninerider <qt-info@nokia.com>2009-10-15 15:09:32 +0200
committerninerider <qt-info@nokia.com>2009-10-15 15:12:20 +0200
commit5d8a1b95ceece54177c1bf8f8b855498d64c4118 (patch)
treef08bbf6c6f2321772b50cbdcbaeac924b40ec533 /tests/auto/qheaderview
parent694976df8fe1866b2496dade643da634656d7b32 (diff)
Default section size is taken instead of some fixed value
Test failed on different styles such as Windows Mobile. Reviewed-by: Ossi
Diffstat (limited to 'tests/auto/qheaderview')
-rw-r--r--tests/auto/qheaderview/tst_qheaderview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qheaderview/tst_qheaderview.cpp b/tests/auto/qheaderview/tst_qheaderview.cpp
index 920231d83d..3286768972 100644
--- a/tests/auto/qheaderview/tst_qheaderview.cpp
+++ b/tests/auto/qheaderview/tst_qheaderview.cpp
@@ -1836,7 +1836,7 @@ void tst_QHeaderView::preserveHiddenSectionWidth()
model.insertRow(1);
view.showSection(2);
QCOMPARE(view.sectionSize(0), 100);
- QCOMPARE(view.sectionSize(1), 30);
+ QCOMPARE(view.sectionSize(1), view.defaultSectionSize());
QCOMPARE(view.sectionSize(2), 50);
}