From c90f8fe253c83b233878aaf26ac0e821bc3ad140 Mon Sep 17 00:00:00 2001 From: cesar991 Date: Tue, 19 Jul 2016 13:30:13 +0200 Subject: [PATCH] Repair errors in PAN4 and PAN9 --- tests/console/PAN4.py | 6 +++--- tests/console/PAN9.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/console/PAN4.py b/tests/console/PAN4.py index 243dc7a2bc..cc625bf3da 100644 --- a/tests/console/PAN4.py +++ b/tests/console/PAN4.py @@ -22,7 +22,7 @@ class PAN4(PandoraWebDriverTestCase): def test_pan4(self): driver = self.driver - login(driver,user="admin",passwd="pandora",pandora_url=self.base_url) + login(driver,user="admin",passwd="pandora") detect_and_pass_all_wizards(driver) #Creates a user with Chief Operator - Applications profile @@ -38,7 +38,7 @@ class PAN4(PandoraWebDriverTestCase): logout(driver,self.base_url) #Login - login(driver,user='PAN_4',passwd='PAN_4',pandora_url=self.base_url) + login(driver,user='PAN_4',passwd='PAN_4') detect_and_pass_all_wizards(driver) #Check that the report is visible @@ -68,7 +68,7 @@ class PAN4(PandoraWebDriverTestCase): #Delete reports logout(driver,self.base_url) - login(driver,user="admin",passwd="pandora",pandora_url=self.base_url) + login(driver,user="admin",passwd="pandora") delete_report(driver,"PAN_4_Servers") delete_report(driver,"PAN_4_Applications") diff --git a/tests/console/PAN9.py b/tests/console/PAN9.py index f3ea8542f5..5b8ffb09a8 100644 --- a/tests/console/PAN9.py +++ b/tests/console/PAN9.py @@ -37,7 +37,7 @@ class PAN9(PandoraWebDriverTestCase): create_user(driver,"PAN9_user","pandora",profile_list=l) - logout(driver) + logout(driver,,self.base_url) login(driver,user="PAN9_user")