From c5e2b8c162f32a83430d3d9db6d8b034692448b6 Mon Sep 17 00:00:00 2001 From: Pradeep Nayak Date: Wed, 27 Jan 2016 02:09:51 +0530 Subject: [PATCH] --CRM-16188, removed white spaces --- tests/phpunit/api/v3/OrderTest.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/tests/phpunit/api/v3/OrderTest.php b/tests/phpunit/api/v3/OrderTest.php index dac7361282..9daa8e9bde 100644 --- a/tests/phpunit/api/v3/OrderTest.php +++ b/tests/phpunit/api/v3/OrderTest.php @@ -75,12 +75,14 @@ class api_v3_OrderTest extends CiviUnitTestCase { $order = $this->callAPISuccess('Order', 'get', $params); $this->assertEquals(1, $order['count']); - $expectedResult = array($contribution['id'] => array( - 'total_amount' => 100, - 'contribution_id' => $contribution['id'], - 'contribution_status' => 'Completed', - 'net_amount' => 100, - )); + $expectedResult = array( + $contribution['id'] => array( + 'total_amount' => 100, + 'contribution_id' => $contribution['id'], + 'contribution_status' => 'Completed', + 'net_amount' => 100, + ), + ); $lineItems[] = array( 'entity_table' => 'civicrm_contribution', 'entity_id' => $contribution['id'], -- 2.25.1