From 81bd68a29cb64c4d5dbddc151328d956a18bb40a Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Sat, 8 Oct 2022 09:51:21 +0100 Subject: [PATCH] test fix --- tests/utilities/test_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utilities/test_app.py b/tests/utilities/test_app.py index 946fc8ddb..545a0210f 100644 --- a/tests/utilities/test_app.py +++ b/tests/utilities/test_app.py @@ -126,7 +126,7 @@ class AppTest(App): widget, region = self.get_widget_at(x, y) except errors.NoWidget: return "" - if widget not in self.screen._compositor.regions: + if widget not in self.screen._compositor.visible_widgets: return "" x -= region.x