From b929d2d1d4646f366dc2f1b3c5a0f4352cd36f97 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Fri, 2 May 2014 21:37:17 -0700 Subject: [PATCH] fix for test bug due to faulty kiwi brain wiring --- tests/phpunit/CRM/Core/PaymentTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/CRM/Core/PaymentTest.php b/tests/phpunit/CRM/Core/PaymentTest.php index 816cf3ba4e..24756c66f7 100644 --- a/tests/phpunit/CRM/Core/PaymentTest.php +++ b/tests/phpunit/CRM/Core/PaymentTest.php @@ -49,6 +49,6 @@ class CRM_Core_PaymentTest extends CiviUnitTestCase { } $log = $this->callAPISuccess('SystemLog', 'get', array()); - $this->assertEquals('payment_notification processor_name=Paypal', $log['values'][$log->id]['message']); + $this->assertEquals('payment_notification processor_name=Paypal', $log['values'][$log['id']]['message']); } } -- 2.25.1