From 16c12d4ec2fe6e9934e85d7b07f14dd588e3a8c4 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 77102c7b0f..a8790b52b3 100644 --- a/tests/phpunit/CRM/Core/Payment/PayPalProIPNTest.php +++ b/tests/phpunit/CRM/Core/Payment/PayPalProIPNTest.php @@ -151,7 +151,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