From 8bc24c5803121db3f20c749f314135287ab9c535 Mon Sep 17 00:00:00 2001 From: Valentina Novgorodtceva Date: Tue, 25 Jun 2024 13:09:51 +0700 Subject: [PATCH] chore: fix for community name --- test/e2e/tests/communities/test_communities_categories.py | 2 +- test/e2e/tests/communities/test_communities_channels.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/tests/communities/test_communities_categories.py b/test/e2e/tests/communities/test_communities_categories.py index 15e95b2320..5cadc15376 100644 --- a/test/e2e/tests/communities/test_communities_categories.py +++ b/test/e2e/tests/communities/test_communities_categories.py @@ -87,7 +87,7 @@ def test_create_edit_remove_community_category(main_screen: MainWindow, category @pytest.mark.parametrize('user_data', [configs.testpath.TEST_USER_DATA / 'squisher']) def test_member_role_cannot_add_edit_or_delete_category(main_screen: MainWindow): with step('Choose community user is not owner of'): - community_screen = main_screen.left_panel.select_community('Super community') + community_screen = main_screen.left_panel.select_community('Community with 2 users') with step('Verify that member cannot add category'): with step('Verify that create channel or category button is not present'): diff --git a/test/e2e/tests/communities/test_communities_channels.py b/test/e2e/tests/communities/test_communities_channels.py index 99ebaf380a..70ecf90a5a 100644 --- a/test/e2e/tests/communities/test_communities_channels.py +++ b/test/e2e/tests/communities/test_communities_channels.py @@ -84,7 +84,7 @@ def test_create_edit_remove_community_channel(main_screen, channel_name, channel @pytest.mark.parametrize('user_data', [configs.testpath.TEST_USER_DATA / 'squisher']) def test_member_role_cannot_add_edit_and_delete_channels(main_screen: MainWindow): with step('Choose community user is not owner of'): - community_screen = main_screen.left_panel.select_community('Super community') + community_screen = main_screen.left_panel.select_community('Community with 2 users') with step('Verify that member cannot add new channel'): with step('Verify that create channel or category button is not present'): assert not community_screen.left_panel.does_create_channel_or_category_button_exist()