From 7ecefdebdfaa8cc6e4641615009c03d6f1b07941 Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Tue, 22 Aug 2023 16:44:22 +0200 Subject: [PATCH] Revert "tests: don't wait for lianad to log on shutdown" This reverts commit 97abc4699c7343e4be6a0596a25481f9e07bb3bb. --- tests/test_framework/lianad.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_framework/lianad.py b/tests/test_framework/lianad.py index 30fb4c941..eb273c319 100644 --- a/tests/test_framework/lianad.py +++ b/tests/test_framework/lianad.py @@ -127,6 +127,9 @@ def start(self): def stop(self, timeout=5): try: self.rpc.stop() + self.wait_for_log( + "Stopping the liana daemon.", + ) self.proc.wait(timeout) except Exception as e: logging.error(f"{self.prefix} : error when calling stop: '{e}'")