From 557af9745a93e6773e0a9d95eafc7343286de532 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Sat, 19 Jul 2025 18:17:39 -0400 Subject: [PATCH] test: clean up GUI sync tests --- src/tests/test_gui_sync.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tests/test_gui_sync.py b/src/tests/test_gui_sync.py index c17d66a..6ef1ed2 100644 --- a/src/tests/test_gui_sync.py +++ b/src/tests/test_gui_sync.py @@ -60,6 +60,7 @@ def test_start_vault_sync_schedules_task(): assert tasks asyncio.get_event_loop().run_until_complete(tasks[0]) assert nostr.called + win.cleanup() def test_status_updates_on_bus_events(): @@ -73,3 +74,4 @@ def test_status_updates_on_bus_events(): assert win.status.text == "Syncing..." bus.publish("sync_finished") assert "Last sync:" in win.status.text + win.cleanup()