Skip to content

Commit 30bee56

Browse files
committed
tests: support the new(er) Thunderbird name on F41+
Fedora 41 use yet another desktop app id. QubesOS/qubes-issues#9244
1 parent a5351b8 commit 30bee56

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

qubes/tests/integ/dispvm.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,7 @@ def _get_open_script(self, application):
489489
"mozilla-thunderbird",
490490
"thunderbird",
491491
"org.mozilla.thunderbird",
492+
"net.thunderbird.Thunderbird",
492493
):
493494
with open(
494495
"/usr/share/qubes/tests-data/"
@@ -537,6 +538,9 @@ def test_100_open_in_dispvm(self):
537538
# F40+ has org.mozilla.thunderbird
538539
if "org.mozilla.thunderbird" in self._get_apps_list(self.template):
539540
app_id = "org.mozilla.thunderbird"
541+
# F41+ has net.thunderbird.Thunderbird
542+
if "net.thunderbird.Thunderbird" in self._get_apps_list(self.template):
543+
app_id = "net.thunderbird.Thunderbird"
540544

541545
self.testvm1.features["service.app-dispvm." + app_id] = "1"
542546
self.loop.run_until_complete(self.testvm1.start())

0 commit comments

Comments
 (0)