From 99125b21697e2a0d9fef5c888e2bbdc33f0adfb2 Mon Sep 17 00:00:00 2001 From: Tulio Casagrande Date: Tue, 11 Apr 2017 19:42:01 -0300 Subject: [#927] Call AccountRecoveryPage parent using the proper way with @deniscostadsc --- .../test/functional/features/page_objects/account_recovery_page.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'service') 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"]', -- cgit v1.2.3