From 12944ffc9bd36c930bb5a247cffb2e9fb7d90ba0 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Mon, 27 Nov 2017 17:42:38 +0100 Subject: [PATCH] pytest: Switch to 'Hello world' as startup marker Signed-off-by: Christian Decker --- tests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils.py b/tests/utils.py index e5ced5a06..ba515f33c 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -256,7 +256,7 @@ class LightningD(TailableProc): def start(self): TailableProc.start(self) - self.wait_for_log("Creating IPv6 listener on port") + self.wait_for_log("Hello world from") logging.info("LightningD started") def wait(self, timeout=10):