summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/itemviews
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-11-01 15:59:40 +1000
committerQt by Nokia <qt-info@nokia.com>2011-11-02 05:44:27 +0100
commit5eb0a7be7432b33eab8c7c63b7e9baf3023fa612 (patch)
treeae1c4defae59a6ae31b250878565e9e4c812b9e4 /tests/auto/widgets/itemviews
parent82a4516c5d6d37993bf648fcbcb4d7d0486254bf (diff)
Remove stale test data from qsortfilterproxymodel test
The removed test data has been disabled since before the tests were added to the Qt repository in June 2006, and was incomplete (the "pattern" field was missing). Change-Id: I974d03a4dcca76ba1a20f740372702612c8ce02b Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/widgets/itemviews')
-rw-r--r--tests/auto/widgets/itemviews/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp43
1 files changed, 0 insertions, 43 deletions
diff --git a/tests/auto/widgets/itemviews/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp b/tests/auto/widgets/itemviews/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp
index 8922f055bc..def1794041 100644
--- a/tests/auto/widgets/itemviews/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp
+++ b/tests/auto/widgets/itemviews/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp
@@ -1351,49 +1351,6 @@ void tst_QSortFilterProxyModel::filterHierarchy_data()
QTest::newRow("simple hierarchy") << "b.*z"
<< (QStringList() << "baz" << "<" << "boz" << "<" << "moo" << ">" << ">")
<< (QStringList() << "baz" << "<" << "boz" << ">");
-#if 0
- QTest::newRow("hierarchical")
- << (QStringList()
- << "a"
- << "<"
- << "x"
- << "y"
- << "z"
- << ">"
- << "b"
- << "<"
- << "k"
- << "<"
- << "7"
- << "8"
- << "9"
- << ">"
- << "l"
- << "m"
- << ">"
- << "c"
- << "<"
- << "g"
- << "h"
- << "<"
- << "0"
- << "1"
- << "2"
- << ">"
- << "i"
- << ">")
- << (QStringList()
- << "a"
- << "<"
- << "x"
- << "z"
- << ">"
- << "c"
- << "<"
- << "g"
- << "i"
- << ">");
-#endif
}
void tst_QSortFilterProxyModel::filterHierarchy()