From 045a1a22abd1ce374e954109a0aca8d6c1312e4e Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Fri, 25 Aug 2023 12:15:33 +0800 Subject: [PATCH] Add system menus. --- testbed/tests/test_app.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/testbed/tests/test_app.py b/testbed/tests/test_app.py index 608f18b8d7..a160a6f4bd 100644 --- a/testbed/tests/test_app.py +++ b/testbed/tests/test_app.py @@ -414,10 +414,10 @@ async def test_main_window_toolbar(app, main_window, main_window_probe): assert not main_window_probe.has_toolbar() -# async def test_system_menus(app_probe): -# """System-specific menus behave as expected""" -# # Check that the system menus (which can be platform specific) exist. -# app_probe.assert_system_menus() +async def test_system_menus(app_probe): + """System-specific menus behave as expected""" + # Check that the system menus (which can be platform specific) exist. + app_probe.assert_system_menus() async def test_menu_about(monkeypatch, app, app_probe):