From 676bd6d39b2295ba8139f693d862aba98994ecbe Mon Sep 17 00:00:00 2001 From: mulhern Date: Tue, 3 Sep 2024 12:49:38 -0400 Subject: [PATCH] Print name of pools that still remain Should have been included in commit: bac92ded33256414918f21d8fc2397ea61dcd9a5. 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 a6ad4e2..30b4deb 100644 --- a/testlib/infra.py +++ b/testlib/infra.py @@ -123,7 +123,7 @@ def check_result(result, format_str, format_str_args): remnant_pools = StratisDbus.pool_list() if remnant_pools != []: error_strings.append( - f'remnant pools: {", ".join(name for name in remnant_pools)}' + f'remnant pools: {", ".join(name for _, name, _ in remnant_pools)}' ) (remnant_keys, return_code, message) = StratisDbus.get_keys()