chore: removed verification that channel is selected (I did it in branch but let's do this for master to increase stability)

This commit is contained in:
Valentina Novgorodtceva 2024-02-28 10:09:19 +07:00 committed by Anastasiya
parent 838b91f03e
commit ab3a46dc74
2 changed files with 0 additions and 2 deletions

View File

@ -51,7 +51,6 @@ class CommunityScreen(QObject):
with step('Channel is correct in channels list'):
channel = self.left_panel.get_channel_parameters(name)
assert channel.name == name
assert channel.selected
with step('Channel is correct in community toolbar'):
assert self.tool_bar.channel_name == name

View File

@ -54,7 +54,6 @@ def test_create_edit_remove_community_channel(main_screen, channel_name, channel
with step('Verify edited channel details are correct in channels list'):
channel = community_screen.left_panel.get_channel_parameters(new_channel_name)
assert channel.name == new_channel_name
assert channel.selected
with step('Verify edited channel details are correct in community toolbar'):
assert community_screen.tool_bar.channel_name == new_channel_name