Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 2 additions & 14 deletions qubes/tests/integ/vm_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -828,13 +828,7 @@ def test_121_updates_available_notification_qubes_vm_update_cli(self):
)

def test_130_no_network_qubes_vm_update(self):
expected_ret_codes = (23,)
if self.template.count("archlinux"):
# updater on Arch doesn't have separate metadata refresh step
expected_ret_codes = (
23,
24,
)
expected_ret_codes = (23, 24)
self.update_via_proxy_qubes_vm_update_impl(
method="qubes-vm-update",
options=(),
Expand All @@ -844,13 +838,7 @@ def test_130_no_network_qubes_vm_update(self):
)

def test_131_no_network_qubes_vm_update_cli(self):
expected_ret_codes = (23,)
if self.template.count("archlinux"):
# updater on Arch doesn't have separate metadata refresh step
expected_ret_codes = (
23,
24,
)
expected_ret_codes = (23, 24)
self.update_via_proxy_qubes_vm_update_impl(
method="qubes-vm-update",
options=("--no-progress",),
Expand Down