summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorTulio Casagrande <tcasagra@thoughtworks.com>2017-04-11 19:42:01 -0300
committerTulio Casagrande <tcasagra@thoughtworks.com>2017-04-11 19:42:01 -0300
commit99125b21697e2a0d9fef5c888e2bbdc33f0adfb2 (patch)
treefe53ede4a058d8464d654b3548b98cfe445d65a2 /service
parentad149efe8804eb831861379747bbb63013d9750d (diff)
[#927] Call AccountRecoveryPage parent using the proper way
with @deniscostadsc
Diffstat (limited to 'service')
-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"]',