From bf7f789d01b7c66ccd0c213db0a029da7e588c9e Mon Sep 17 00:00:00 2001 From: Vasily Ryabov Date: Thu, 29 Dec 2022 18:23:40 +0300 Subject: [PATCH] Fix flaky test for send_keys --- pywinauto/unittests/test_clipboard_linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywinauto/unittests/test_clipboard_linux.py b/pywinauto/unittests/test_clipboard_linux.py index afa79b668..44703d0cb 100644 --- a/pywinauto/unittests/test_clipboard_linux.py +++ b/pywinauto/unittests/test_clipboard_linux.py @@ -30,7 +30,7 @@ def setUp(self): self.app = subprocess.Popen("exec " + _test_app(), shell=True) time.sleep(0.1) mouse.click(coords=(300, 300)) - time.sleep(0.1) + time.sleep(0.2) def tearDown(self): """Close the application after tests"""