chore: fix for edit status account test
This commit is contained in:
parent
6852f32681
commit
a5fe297dfe
|
@ -11,12 +11,14 @@ from gui.main_window import MainWindow
|
||||||
from gui.screens.settings import SettingsScreen
|
from gui.screens.settings import SettingsScreen
|
||||||
|
|
||||||
pytestmark = marks
|
pytestmark = marks
|
||||||
|
|
||||||
|
|
||||||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/704433',
|
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/704433',
|
||||||
'Account view interactions: Edit Status default account')
|
'Account view interactions: Edit Status default account')
|
||||||
@pytest.mark.case(704433)
|
@pytest.mark.case(704433)
|
||||||
@pytest.mark.parametrize('new_name', [
|
@pytest.mark.parametrize('new_name', [
|
||||||
pytest.param(''.join(random.choices(string.ascii_letters +
|
pytest.param(''.join(random.choices(string.ascii_letters +
|
||||||
string.digits, k=40)))
|
string.digits, k=20)))
|
||||||
])
|
])
|
||||||
def test_settings_edit_status_account(main_screen: MainWindow, new_name):
|
def test_settings_edit_status_account(main_screen: MainWindow, new_name):
|
||||||
with step('Open profile and wallet setting and check the keypairs list is not empty'):
|
with step('Open profile and wallet setting and check the keypairs list is not empty'):
|
||||||
|
|
Loading…
Reference in New Issue