[plasma/kwin] autotests/integration: autotests: Fix MoveResizeWindowTest::testGrowShrink()
Vlad Zahorodnii <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 7dce91a6a336afc5dddd58e8a674aa308ea9f307 by Vlad Zahorodnii.
Committed on 03/08/2026 at 13:24.
Pushed by vladz into branch 'master'.
autotests: Fix MoveResizeWindowTest::testGrowShrink()
The important ack_configure is missing.
M +1 -0 autotests/integration/move_resize_window_test.cpp
https://invent.kde.org/plasma/kwin/-/commit/7dce91a6a336afc5dddd58e8a674aa308ea9f307
diff --git a/autotests/integration/move_resize_window_test.cpp b/autotests/integration/move_resize_window_test.cpp
index 194768d3193..cb1889a492b 100644
--- a/autotests/integration/move_resize_window_test.cpp
+++ b/autotests/integration/move_resize_window_test.cpp
@@ -435,6 +435,7 @@ void MoveResizeWindowTest::testGrowShrink()
QFETCH(QString, methodCall);
QMetaObject::invokeMethod(workspace(), methodCall.toLocal8Bit().constData());
QVERIFY(surfaceConfigureRequestedSpy.wait());
+ shellSurface->xdgSurface()->ack_configure(surfaceConfigureRequestedSpy.last()[0].toInt());
Test::render(surface.get(), toplevelConfigureRequestedSpy.last().first().toSize(), Qt::red);
QSignalSpy frameGeometryChangedSpy(window, &Window::frameGeometryChanged);