diff --git a/autotests/integration/screens_test.cpp b/autotests/integration/screens_test.cpp index fd6962fb8b..bda6400421 100644 --- a/autotests/integration/screens_test.cpp +++ b/autotests/integration/screens_test.cpp @@ -117,7 +117,6 @@ void ScreensTest::testCurrentWithFollowsMouse_data() QTest::addColumn("cursorPos"); QTest::addColumn("expectedId"); - QTest::newRow("empty") << QVector{{QRect()}} << QPoint(100, 100) << 0; QTest::newRow("cloned") << QVector{{QRect{0, 0, 200, 100}, QRect{0, 0, 200, 100}}} << QPoint(50, 50) << 0; QTest::newRow("adjacent-0") << QVector{{QRect{0, 0, 200, 100}, QRect{200, 100, 400, 300}}} << QPoint(199, 99) << 0; QTest::newRow("adjacent-1") << QVector{{QRect{0, 0, 200, 100}, QRect{200, 100, 400, 300}}} << QPoint(200, 100) << 1; @@ -150,7 +149,6 @@ void ScreensTest::testCurrentPoint_data() QTest::addColumn("cursorPos"); QTest::addColumn("expectedId"); - QTest::newRow("empty") << QVector{{QRect()}} << QPoint(100, 100) << 0; QTest::newRow("cloned") << QVector{{QRect{0, 0, 200, 100}, QRect{0, 0, 200, 100}}} << QPoint(50, 50) << 0; QTest::newRow("adjacent-0") << QVector{{QRect{0, 0, 200, 100}, QRect{200, 100, 400, 300}}} << QPoint(199, 99) << 0; QTest::newRow("adjacent-1") << QVector{{QRect{0, 0, 200, 100}, QRect{200, 100, 400, 300}}} << QPoint(200, 100) << 1;