From 71d2520653e18574dac13518e5e314852b89fa20 Mon Sep 17 00:00:00 2001 From: Anastasiya Semenkevich Date: Fri, 19 Jan 2024 22:51:06 +0300 Subject: [PATCH] chore: bring back assert and remove reference (issue is fixed) --- test/e2e/tests/communities/test_communities.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/e2e/tests/communities/test_communities.py b/test/e2e/tests/communities/test_communities.py index e3255d8e61..b57993c54a 100644 --- a/test/e2e/tests/communities/test_communities.py +++ b/test/e2e/tests/communities/test_communities.py @@ -124,5 +124,4 @@ def test_edit_community(main_screen: MainWindow, params): community_info = community_settings.communities[0] assert community_info.name == params['name'] assert community_info.description == params['description'] - # TODO after https://github.com/status-im/status-desktop/issues/12967 will be fixed - # assert '1' in community_info.members + assert '1' in community_info.members