From f038d83281c803aad2d5869b0eb5cc3bce179404 Mon Sep 17 00:00:00 2001 From: Anastasiya Semenkevich Date: Fri, 28 Jun 2024 16:39:47 +0300 Subject: [PATCH] chore: address review from https://github.com/status-im/status-desktop/pull/15251/ --- test/e2e/driver/aut.py | 2 +- test/e2e/driver/server.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/driver/aut.py b/test/e2e/driver/aut.py index 206dbde0cc..3af4cd0392 100644 --- a/test/e2e/driver/aut.py +++ b/test/e2e/driver/aut.py @@ -119,7 +119,7 @@ class AUT: LOG.info('Stopping AUT: %s', self.path) self.detach_context() local_system.kill_process(self.pid) - time.sleep(1) + time.sleep(1) # FIXME: Implement waiting for process to actually exit. @allure.step("Start and attach AUT") def launch(self) -> 'AUT': diff --git a/test/e2e/driver/server.py b/test/e2e/driver/server.py index 26d9fd5586..0b093a8ce0 100644 --- a/test/e2e/driver/server.py +++ b/test/e2e/driver/server.py @@ -44,7 +44,7 @@ class SquishServer: return LOG.info('Stopping Squish Server with PID: %d', cls.pid) local_system.kill_process(cls.pid) - time.sleep(1) + time.sleep(1) # FIXME: Implement waiting for process to actually exit. cls.pid = None cls.port = None