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>
This commit is contained in:
Jason McDonald 2011-11-01 15:59:40 +10:00 committed by Qt by Nokia
parent 82a4516c5d
commit 5eb0a7be74

View File

@ -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()