From f317171815c8b2c49331eacf5324ec1f301e770d Mon Sep 17 00:00:00 2001 From: Jamie McClelland Date: Fri, 2 Jun 2017 21:58:28 -0400 Subject: [PATCH] CRM-20381 - sytax fixes. --- tests/phpunit/CRM/Utils/GeocodeTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/phpunit/CRM/Utils/GeocodeTest.php b/tests/phpunit/CRM/Utils/GeocodeTest.php index 9c540572db..5a80407a06 100644 --- a/tests/phpunit/CRM/Utils/GeocodeTest.php +++ b/tests/phpunit/CRM/Utils/GeocodeTest.php @@ -36,8 +36,8 @@ class CRM_Utils_GeocodeTest extends CiviUnitTestCase { 'street_address' => '1600 Pennsylvania Avenue', 'city' => 'Washington', 'state_province' => 'DC', - 'location_type_id' => 1 - ) + 'location_type_id' => 1, + ), ); $result = civicrm_api3('Contact', 'create', $params); $contact_values = array_pop($result['values']); @@ -54,6 +54,5 @@ class CRM_Utils_GeocodeTest extends CiviUnitTestCase { $new_contact_values = array_pop($new_result['values']); $new_address_values = array_pop($new_contact_values['api.Address.create']['values']); $this->assertArrayNotHasKey('geo_code_1', $new_address_values, 'No geocoding when geocodeMethod is empty'); - } } -- 2.25.1