From 7a8bb01323b410db29382dea2cc2705bea33c025 Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Thu, 12 Jan 2023 00:34:31 +0200 Subject: [PATCH] autotests: Make testStruts quicker As far as I can tell, there's no reason to add an artificial delay of 50ms, which repeated 100 times accumulates to 5 seconds. --- autotests/integration/struts_test.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/autotests/integration/struts_test.cpp b/autotests/integration/struts_test.cpp index 0f9ac26fd3..8d65f58ab5 100644 --- a/autotests/integration/struts_test.cpp +++ b/autotests/integration/struts_test.cpp @@ -970,7 +970,6 @@ void StrutsTest::testWindowMoveWithPanelBetweenScreens() // move to next screen - step is 8 pixel, so 800 pixel for (int i = 0; i < 100; i++) { window2->keyPressEvent(Qt::Key_Left); - QTest::qWait(50); } window2->keyPressEvent(Qt::Key_Enter); QCOMPARE(window2->isInteractiveMove(), false);