Skip to content
This repository was archived by the owner on Aug 13, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/onboarding/test_onboarding_negative_scenarios.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

pytestmark = marks


@pytest.fixture
def keys_screen(main_window) -> KeysView:
with step('Open Generate new keys view'):
Expand All @@ -32,7 +33,6 @@ def keys_screen(main_window) -> KeysView:
@pytest.mark.case(702991)
@pytest.mark.parametrize('error', [OnboardingMessages.PASSWORD_INCORRECT.value
])
@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/13758")
def test_login_with_wrong_password(aut: AUT, keys_screen, main_window, error: str):
user_one: UserAccount = constants.user_account_one
user_one_wrong_password: UserAccount = constants.user_account_one_changed_password
Expand Down Expand Up @@ -63,7 +63,7 @@ def test_login_with_wrong_password(aut: AUT, keys_screen, main_window, error: st
login_view.log_in(user_one_wrong_password)
time.sleep(2)

with step ('Verify that user cannot log in and the error appears'):
with step('Verify that user cannot log in and the error appears'):
assert login_view.login_error_message == error


Expand Down
2 changes: 1 addition & 1 deletion tests/settings/test_ens_name_purchase.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def keys_screen(main_window) -> KeysView:
@pytest.mark.case(704597)
@pytest.mark.parametrize('user_account', [constants.user.user_with_funds])
@pytest.mark.parametrize('ens_name', [pytest.param(constants.user.ens_user_name)])
@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/12988')
@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/13850')
def test_ens_name_purchase(keys_screen, main_window, user_account, ens_name):
with step('Open import seed phrase view and enter seed phrase'):
input_view = keys_screen.open_import_seed_phrase_view().open_seed_phrase_input_view()
Expand Down