Skip to content

Commit

Permalink
Merge pull request #282 from mulkieran/fix-error-message-calc
Browse files Browse the repository at this point in the history
Print name of pools that still remain
  • Loading branch information
mulkieran authored Sep 3, 2024
2 parents 077bd8e + 676bd6d commit 1c310fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testlib/infra.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 1c310fd

Please sign in to comment.