From 154bef4dfd13a939c7caca22c8886cc0f03ca9a7 Mon Sep 17 00:00:00 2001 From: Alok Patel Date: Mon, 16 Oct 2017 08:47:21 +0530 Subject: [PATCH] CRM-20432: Changed membership status to New from Current --- tests/phpunit/CRM/Contribute/Form/AdditionalPaymentTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/CRM/Contribute/Form/AdditionalPaymentTest.php b/tests/phpunit/CRM/Contribute/Form/AdditionalPaymentTest.php index 6cae3eedbe..d2400256ad 100644 --- a/tests/phpunit/CRM/Contribute/Form/AdditionalPaymentTest.php +++ b/tests/phpunit/CRM/Contribute/Form/AdditionalPaymentTest.php @@ -217,7 +217,7 @@ class CRM_Contribute_Form_AdditionalPaymentTest extends CiviUnitTestCase { $contribution = $this->callAPISuccessGetSingle('Contribution', array('id' => $this->_contributionId)); $contributionMembership = $this->callAPISuccessGetSingle('Membership', array('id' => $membership["id"])); $membershipStatus = $this->callAPISuccessGetSingle('MembershipStatus', array('id' => $contributionMembership["status_id"])); - $this->assertEquals('Current', $membershipStatus['name']); + $this->assertEquals('New', $membershipStatus['name']); } private function createPendingMembershipAndRecordContribution($contributionId) { -- 2.25.1