Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update (tests) for F41 dom0 #66

Merged
merged 1 commit into from
Aug 24, 2024
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
4 changes: 2 additions & 2 deletions qubesappmenus/tests_integ.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def test_000_created(self, vm=None):
assert all(x.startswith(prefix) for x in appmenus)
appmenus = [x[len(prefix):] for x in appmenus]
assert all(x.endswith('.desktop') for x in appmenus)
self.assertEquals(set(whitelisted), set(appmenus))
self.assertEqual(set(whitelisted), set(appmenus))
self.assertPathExists(self.appmenus.icons_dir(vm))
appicons = os.listdir(self.appmenus.icons_dir(vm))
whitelisted_icons = set()
Expand All @@ -114,7 +114,7 @@ def test_000_created(self, vm=None):
appmenu))))
if desktop.getIcon():
whitelisted_icons.add(os.path.basename(desktop.getIcon()))
self.assertEquals(set(whitelisted_icons), set(appicons))
self.assertEqual(set(whitelisted_icons), set(appicons))

def test_001_created_registered(self):
"""Check whether appmenus was registered in desktop environment"""
Expand Down