From 7c217bb017ad6f46963020486304c6c0778c68c5 Mon Sep 17 00:00:00 2001 From: Jamie McClelland Date: Tue, 10 Jun 2014 14:36:40 -0400 Subject: [PATCH] CRM-12679 - fixing paypal ipn test so it works with latest pp code. ---------------------------------------- * CRM-12679: Paypal Express Recurring IPN not working? https://issues.civicrm.org/jira/browse/CRM-12679 --- tests/phpunit/CRM/Core/Payment/PayPalProIPNTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/CRM/Core/Payment/PayPalProIPNTest.php b/tests/phpunit/CRM/Core/Payment/PayPalProIPNTest.php index cf22aa8d54..4d494a6f0e 100644 --- a/tests/phpunit/CRM/Core/Payment/PayPalProIPNTest.php +++ b/tests/phpunit/CRM/Core/Payment/PayPalProIPNTest.php @@ -154,7 +154,7 @@ class CRM_Core_Payment_PayPalProIPNTest extends CiviUnitTestCase { $contribution = $this->callAPISuccess('contribution', 'getsingle', array('id' => $this->_contributionID)); // no change $this->assertEquals(2, $contribution['contribution_status_id']); - $this->assertEquals('Payment Express IPNS not currently handled', $e->getMessage()); + $this->assertEquals('Paypal IPNS not handled other than recurring_payments', $e->getMessage()); return; } $this->fail('The Paypal Express IPN should have caused an exception'); -- 2.25.1