Skip to content

Commit

Permalink
clean_up(): destructure MergeScheduled unset check
Browse files Browse the repository at this point in the history
Signed-off-by: Bryan Gurney <[email protected]>
  • Loading branch information
bgurney-rh committed Sep 10, 2024
1 parent 1fadd78 commit 29be002
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testlib/infra.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ def check_result(result, format_str, format_str_args):
)

# Unset MergeScheduled
for (fs_path, name, origin), pool_name in StratisDbus.fs_list().items():
if origin[0] == 1:
for (fs_path, name, (origin_set, _)), pool_name in StratisDbus.fs_list().items():
if origin_set:
check_result(
StratisDbus.set_property(
fs_path,
Expand Down

0 comments on commit 29be002

Please sign in to comment.