From 4224c8f47835dd2298ad884e843fa7c2c3e82973 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Wed, 19 Mar 2025 15:23:28 -0400 Subject: [PATCH] tests: wait_time is not defined so don't use it In daemon startup a error message was attempting to use a variable `wait_time` that has not been setup. Signed-off-by: Donald Sharp --- tests/topotests/lib/topotest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/topotests/lib/topotest.py b/tests/topotests/lib/topotest.py index 79c93df987..72b204c35d 100644 --- a/tests/topotests/lib/topotest.py +++ b/tests/topotests/lib/topotest.py @@ -2356,8 +2356,8 @@ class Router(Node): _check_daemons_running(check_daemon_files) if check_daemon_files: - assert False, "Timeout({}) waiting for {} to appear on {}".format( - wait_time, check_daemon_files[0], self.name + assert False, "Timeout waiting for {} to appear on {}".format( + check_daemon_files[0], self.name ) # Update the permissions on the log files -- 2.39.5