From: Donald Sharp Date: Wed, 19 Mar 2025 19:23:28 +0000 (-0400) Subject: tests: wait_time is not defined so don't use it X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=4224c8f47835dd2298ad884e843fa7c2c3e82973;p=matthieu%2Ffrr.git 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 --- 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