Skip to content

Commit

Permalink
Merge branch 'develop' into jc/scan-screen
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Son89 authored May 21, 2024
2 parents c61e480 + a480df4 commit f38f805
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions test/appium/tests/critical/chats/test_group_chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ def prepare_devices(self):
self.chats[0].send_message(self.message_before_adding)

@marks.testrail_id(702807)
@marks.xfail(
reason="Issue with a message status - Sent instead of Delivered, https://github.com/status-im/status-mobile/issues/20126")
def test_group_chat_join_send_text_messages_push(self):
message_to_admin = self.message_to_admin
[self.homes[i].navigate_back_to_home_view() for i in range(3)]
Expand Down
5 changes: 3 additions & 2 deletions test/appium/tests/critical/test_wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ def test_wallet_send_eth(self):

@marks.testrail_id(727230)
def test_wallet_send_asset_from_drawer(self):
self.wallet_view.navigate_back_to_wallet_view()
sender_balance, receiver_balance, eth_amount_sender, eth_amount_receiver = self._get_balances_before_tx()
self.wallet_2.close_account_button.click()
self.wallet_2.chats_tab.click()
Expand Down Expand Up @@ -208,10 +209,10 @@ def test_wallet_add_remove_watch_only_account(self):
self.errors.append("Can't swipe between accounts, account to watch is not shown")
else:
shown_address = self.home_view.copy_wallet_address()
if set(shown_address.split(':')) != {'eth', 'arb1', 'opt', address_to_watch}:
if set(shown_address.split(':')) != {'eth', 'arb1', 'oeth', address_to_watch}:
self.home_view.driver.fail(
"Incorrect address '%s' is shown when swiping between accounts, expected one is '%s'" % (
shown_address, ':'.join(address_to_watch)))
shown_address, address_to_watch))
self.home_view.click_system_back_button()

self.wallet_view.just_fyi("Removing account to watch")
Expand Down

0 comments on commit f38f805

Please sign in to comment.