Skip to content

Commit

Permalink
fix group chat tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ghmulti committed Mar 23, 2020
1 parent 06dbb20 commit a0fe73b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/appium/tests/atomic/chats/test_group_chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@


def return_left_chat_system_message(username):
return "@%s left the group" % username
return "%s left the group" % username


def return_created_chat_system_message(username, chat_name):
return "@%s created the group %s" % (username, chat_name)
return "%s created the group %s" % (username, chat_name)


def return_joined_chat_system_message(username):
return "@%s joined the group" % username
return "%s joined the group" % username


def return_made_admin_system_message(username):
return "@%s has been made admin" % username
return "%s has been made admin" % username


def create_users(driver_1, driver_2):
Expand Down

0 comments on commit a0fe73b

Please sign in to comment.