From 38613495f2c649dae7e8872caede1c4ddf3cbcee Mon Sep 17 00:00:00 2001 From: tobi-wan-kenobi Date: Sat, 13 Mar 2021 20:44:36 +0100 Subject: [PATCH] [tests] Adjust for widget hiding --- tests/core/test_output.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/core/test_output.py b/tests/core/test_output.py index 4e0d905..870ded8 100644 --- a/tests/core/test_output.py +++ b/tests/core/test_output.py @@ -26,6 +26,7 @@ def module_a(mocker): widget = mocker.MagicMock() widget.full_text.return_value = "test" widget.id = "a" + widget.hidden = False return SampleModule(config=core.config.Config([]), widgets=[widget, widget, widget]) @pytest.fixture