summaryrefslogtreecommitdiff
path: root/service/test/functional/features/page_objects/account_recovery_page.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/test/functional/features/page_objects/account_recovery_page.py')
-rw-r--r--service/test/functional/features/page_objects/account_recovery_page.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/service/test/functional/features/page_objects/account_recovery_page.py b/service/test/functional/features/page_objects/account_recovery_page.py
index 6f502994..4826b6ec 100644
--- a/service/test/functional/features/page_objects/account_recovery_page.py
+++ b/service/test/functional/features/page_objects/account_recovery_page.py
@@ -19,11 +19,7 @@ from base_page import BasePage
class AccountRecoveryPage(BasePage):
def __init__(self, context):
- BasePage.__init__(
- self,
- context,
- context.account_recovery_url
- )
+ super(AccountRecoveryPage, self).__init__(context, context.account_recovery_url)
self._locators = {
'admin_code': 'input[name="admin-code"]',