From 24afed26d7941ec72a59e57074b1501afaa99554 Mon Sep 17 00:00:00 2001 From: Pratik Joshi Date: Thu, 21 Mar 2013 15:53:30 +0530 Subject: [PATCH] webtest fix : fixed broken path building due to wrong argument --- tests/phpunit/CiviTest/CiviSeleniumTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/CiviTest/CiviSeleniumTestCase.php b/tests/phpunit/CiviTest/CiviSeleniumTestCase.php index 86a40dc2b3..1146117e39 100644 --- a/tests/phpunit/CiviTest/CiviSeleniumTestCase.php +++ b/tests/phpunit/CiviTest/CiviSeleniumTestCase.php @@ -1775,7 +1775,7 @@ class CiviSeleniumTestCase extends PHPUnit_Extensions_SeleniumTestCase { } function addPaymentInstrument($label, $financialAccount) { - $this->openCiviPage('admin/options/payment_instrument?group=payment_instrument&action=add', 'reset=1', "_qf_Options_next-bottom"); + $this->openCiviPage('admin/options/payment_instrument', 'group=payment_instrument&action=add&reset=1', "_qf_Options_next-bottom"); $this->type("label", $label); $this->select("financial_account_id", "value=$financialAccount"); $this->click("_qf_Options_next-bottom"); -- 2.25.1