From 82dd480196ea053388a4235cb07af89589747981 Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Tue, 7 Sep 2021 20:51:48 +0300 Subject: [PATCH] autotests: Fix testMoveResize "2" is a copy paste typo, the expected number of outputs is 1. --- autotests/integration/move_resize_window_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotests/integration/move_resize_window_test.cpp b/autotests/integration/move_resize_window_test.cpp index 2c6f3e337b..562ac967a2 100644 --- a/autotests/integration/move_resize_window_test.cpp +++ b/autotests/integration/move_resize_window_test.cpp @@ -88,7 +88,7 @@ void MoveResizeWindowTest::initTestCase() kwinApp()->start(); QVERIFY(applicationStartedSpy.wait()); const auto outputs = kwinApp()->platform()->enabledOutputs(); - QCOMPARE(outputs.count(), 2); + QCOMPARE(outputs.count(), 1); QCOMPARE(outputs[0]->geometry(), QRect(0, 0, 1280, 1024)); }