Minor test tidy up
authoreileen <emcnaughton@wikimedia.org>
Mon, 13 Feb 2017 03:11:10 +0000 (16:11 +1300)
committereileen <emcnaughton@wikimedia.org>
Mon, 13 Feb 2017 03:11:10 +0000 (16:11 +1300)
tests/phpunit/CRM/Core/BAO/UFFieldTest.php

index ede681e112c04554ee6c5a21bf6fc86ba68476af..c745657fb6d225063c41a353175ee783264c2407 100644 (file)
@@ -194,7 +194,6 @@ class CRM_Core_BAO_UFFieldTest extends CiviUnitTestCase {
 
     foreach ($fields as $field) {
       $defaults = array(
-        'version' => 3,
         'uf_group_id' => $ufGroup->id,
         'visibility' => 'Public Pages and Listings',
         'weight' => 1,
@@ -204,7 +203,7 @@ class CRM_Core_BAO_UFFieldTest extends CiviUnitTestCase {
         'location_type_id' => NULL,
       );
       $params = array_merge($field, $defaults);
-      $ufField = civicrm_api('UFField', 'create', $params);
+      $ufField = $this->callAPISuccess('UFField', 'create', $params);
       $this->assertAPISuccess($ufField);
     }