From e2650980961b5feb6b5f1a5667392453bb4ecaca Mon Sep 17 00:00:00 2001 From: mulhern Date: Fri, 21 Jun 2024 09:55:20 -0400 Subject: [PATCH] Fix a bug in deciding FilesystemSymlinkMonitor test It was being run exactly when it was not requested. Signed-off-by: mulhern --- testlib/infra.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testlib/infra.py b/testlib/infra.py index 611556c..bd47654 100644 --- a/testlib/infra.py +++ b/testlib/infra.py @@ -322,7 +322,7 @@ def run_check(self, stop_time): """ if not FilesystemSymlinkMonitor.verify_devices: # pylint: disable=no-member - pass + return time.sleep(sleep_time(stop_time, 16))