From fe4b7c023d2a988441fe30b0446167d4950ad5f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fred=20Lef=C3=A9v=C3=A8re-Laoide?= Date: Fri, 7 Jun 2024 10:32:26 +0200 Subject: [PATCH] fix test --- tests/gui_core/test_context_is_readable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gui_core/test_context_is_readable.py b/tests/gui_core/test_context_is_readable.py index ec4a23a1e5..e7e1525201 100644 --- a/tests/gui_core/test_context_is_readable.py +++ b/tests/gui_core/test_context_is_readable.py @@ -201,7 +201,7 @@ def test_data_node_adapter(self): with patch("taipy.gui_core._context.core_get", side_effect=mock_core_get): gui_core_context = _GuiCoreContext(Mock()) outcome = gui_core_context.data_node_adapter(a_datanode) - assert isinstance(outcome, tuple) + assert isinstance(outcome, list) assert outcome[0] == a_datanode.id with patch("taipy.gui_core._context.is_readable", side_effect=mock_is_readable_false):