Skip to content

Commit

Permalink
updater: make test reproducible
Browse files Browse the repository at this point in the history
(cherry picked from commit 462ce53)
  • Loading branch information
piotrbartman authored and marmarek committed Jul 5, 2024
1 parent 5be4884 commit 8dbe4cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qui/updater/intro_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def select_rows_ignoring_conditions(self, cliargs, dom0):
vms_without_dom0 = vms.difference({"dom0"})
if not vms_without_dom0:
continue
value = ",".join(vms_without_dom0)
value = ",".join(sorted(vms_without_dom0))
cmd.append(f"--{arg.replace('_', '-')}")
if not isinstance(value, bool):
cmd.append(str(value))
Expand Down

0 comments on commit 8dbe4cc

Please sign in to comment.