aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/conftest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/conftest.py b/test/conftest.py
index fa5f36b..80ffef5 100644
--- a/test/conftest.py
+++ b/test/conftest.py
@@ -121,12 +121,12 @@ def sqlite_path(tmp_path):
class CmdLineServer(CmdLine):
- def log_line_means_launched(self, line):
+ def log_line_means_ready(self, line):
return line.endswith('Waiting for new connections')
class CmdLineWorker(CmdLine):
- def log_line_means_launched(self, line):
+ def log_line_means_ready(self, line):
return line.endswith('Waiting for a new command')