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:
parent
a7f1c4ca20
commit
0b1f04a1cc
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue