new separator in public usernames and medium priority for test_user_can_interact_with_public_chat

Signed-off-by: yevh-berdnyk <ie.berdnyk@gmail.com>
This commit is contained in:
Anton Danchenko 2018-12-03 11:59:16 +02:00 committed by yevh-berdnyk
parent 0ead731239
commit 73cbfd4cd9
No known key found for this signature in database
GPG Key ID: E9B425FDFC4DEA9C
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ class TestPublicChatMultipleDevice(MultipleDeviceTestCase):
chat_1.send_message_button.click()
chat_2.verify_message_is_under_today_text(message, self.errors)
full_username = '%s :: %s' % (username_1, default_username_1)
full_username = '%s %s' % (username_1, default_username_1)
if chat_2.chat_element_by_text(message).username.text != full_username:
self.errors.append("Username '%s' is not shown next to the received message" % full_username)
@ -131,7 +131,7 @@ class TestPublicChatSingleDevice(SingleDeviceTestCase):
self.verify_no_errors()
@marks.testrail_id(5336)
@marks.critical
@marks.medium
def test_user_can_interact_with_public_chat(self):
signin = SignInView(self.driver)
home_view = signin.create_user()