From 5eb0a7be7432b33eab8c7c63b7e9baf3023fa612 Mon Sep 17 00:00:00 2001 From: Jason McDonald Date: Tue, 1 Nov 2011 15:59:40 +1000 Subject: [PATCH] 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 --- .../tst_qsortfilterproxymodel.cpp | 43 ------------------- 1 file changed, 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()