formatting fixes 1
authormonishdeb <monish.deb@webaccessglobal.com>
Sat, 15 Aug 2015 21:11:59 +0000 (02:41 +0530)
committermonishdeb <monish.deb@webaccessglobal.com>
Sat, 15 Aug 2015 21:11:59 +0000 (02:41 +0530)
tests/phpunit/api/v3/CustomValueTest.php

index 72b609341964b9e2ff1984c846502948f26da4e3..1b8e2a82069c7f96589a7f4789827a6513e3cb37 100644 (file)
@@ -237,7 +237,7 @@ class api_v3_CustomValueTest extends CiviUnitTestCase {
           break;
 
         case 'LIKE':
-          $result = $this->callAPIAndDocument('Contact', 'Get', array('custom_' . $customId => array($op => (is_array($selectedValue) ? "%" . $selectedValue[0] . "%" : $selectedValue),),), __FUNCTION__, __FILE__, $description);
+          $result = $this->callAPIAndDocument('Contact', 'Get', array('custom_' . $customId => array($op => (is_array($selectedValue) ? "%" . $selectedValue[0] . "%" : $selectedValue))), __FUNCTION__, __FILE__, $description);
           $this->assertEquals($contactId, $result['id']);
           break;
 
@@ -247,12 +247,12 @@ class api_v3_CustomValueTest extends CiviUnitTestCase {
           break;
 
         case 'IS NULL':
-          $result = $this->callAPIAndDocument('Contact', 'Get', array('custom_' . $customId  => array($op => 1)), __FUNCTION__, __FILE__, $description);
+          $result = $this->callAPIAndDocument('Contact', 'Get', array('custom_' . $customId => array($op => 1)), __FUNCTION__, __FILE__, $description);
           $this->assertEquals(FALSE, array_key_exists($contactId, $result['values']));
           break;
 
         case 'IS NOT NULL':
-          $result = $this->callAPIAndDocument('Contact', 'Get', array('custom_' . $customId => array($op => 1)),__FUNCTION__, __FILE__, $description);
+          $result = $this->callAPIAndDocument('Contact', 'Get', array('custom_' . $customId => array($op => 1)), __FUNCTION__, __FILE__, $description);
           $this->assertEquals($contactId, $result['id']);
           break;