diff --git a/tests/benchmarks/gui/graphicsview/qgraphicsview/tst_qgraphicsview.cpp b/tests/benchmarks/gui/graphicsview/qgraphicsview/tst_qgraphicsview.cpp index 29ff2aceb..03e972419 100644 --- a/tests/benchmarks/gui/graphicsview/qgraphicsview/tst_qgraphicsview.cpp +++ b/tests/benchmarks/gui/graphicsview/qgraphicsview/tst_qgraphicsview.cpp @@ -448,14 +448,10 @@ void tst_QGraphicsView::deepNesting_data() QTest::addColumn("rotate"); QTest::addColumn("bsp"); - QTest::newRow("bsp, no transform") << false << false << true; - QTest::newRow("bsp, rotation") << true << false << true; - QTest::newRow("bsp, no transform, sort cache") << false << true << true; - QTest::newRow("bsp, rotation, sort cache") << true << true << true; - QTest::newRow("no transform") << false << false << false; - QTest::newRow("rotation") << true << false << false; - QTest::newRow("no transform, sort cache") << false << true << false; - QTest::newRow("rotation, sort cache") << true << true << false; + QTest::newRow("bsp, no transform") << false << true; + QTest::newRow("bsp, rotation") << true << true; + QTest::newRow("no transform") << false << false; + QTest::newRow("rotation") << true << false; } void tst_QGraphicsView::deepNesting()