# HG changeset patch # User Marcin Kuzminski # Date 2019-02-27 16:03:05 # Node ID a87725c8ac40ba1504290105fc310ec6b9bfbed6 # Parent f31c3a2f04fc70c423cb1045326ce76068818eed tests: fixed SSH Key tests diff --git a/rhodecode/apps/admin/tests/test_admin_users_ssh_keys.py b/rhodecode/apps/admin/tests/test_admin_users_ssh_keys.py --- a/rhodecode/apps/admin/tests/test_admin_users_ssh_keys.py +++ b/rhodecode/apps/admin/tests/test_admin_users_ssh_keys.py @@ -173,4 +173,4 @@ class TestAdminUsersSshKeysView(TestCont response.mustcontain('Private key') response.mustcontain('Public key') - response.mustcontain('-----BEGIN RSA PRIVATE KEY-----') + response.mustcontain('-----BEGIN PRIVATE KEY-----') diff --git a/rhodecode/apps/my_account/tests/test_my_account_ssh_keys.py b/rhodecode/apps/my_account/tests/test_my_account_ssh_keys.py --- a/rhodecode/apps/my_account/tests/test_my_account_ssh_keys.py +++ b/rhodecode/apps/my_account/tests/test_my_account_ssh_keys.py @@ -160,4 +160,4 @@ class TestMyAccountSshKeysView(TestContr response.mustcontain('Private key') response.mustcontain('Public key') - response.mustcontain('-----BEGIN RSA PRIVATE KEY-----') + response.mustcontain('-----BEGIN PRIVATE KEY-----')