From 5c088b2eb69bdc6f868131a60c46ac4a219d2cb5 Mon Sep 17 00:00:00 2001 From: pythcoiner Date: Mon, 18 Nov 2024 06:40:24 +0100 Subject: [PATCH] tests: notifyAll() is deprecated, replace w/ notify_all() --- tests/test_framework/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_framework/utils.py b/tests/test_framework/utils.py index 9ca6ef4de..f83640c9e 100644 --- a/tests/test_framework/utils.py +++ b/tests/test_framework/utils.py @@ -372,7 +372,7 @@ def tail(self): logging.debug(f"{self.prefix}: {line.decode().rstrip()}") with self.logs_cond: self.logs.append(str(line.rstrip())) - self.logs_cond.notifyAll() + self.logs_cond.notify_all() self.running = False self.proc.stdout.close() if self.proc.stderr is not None: