test fixup- changed fn signature doesn't expect 'NULL'
[civicrm-core.git] / tests / phpunit / api / v3 / MembershipPaymentTest.php
index 9bde832badef67a46cabc3f1ca13c1268588bd56..b10b85caa5f6659acd75e4d6fce74af2a6c9fb7d 100644 (file)
@@ -95,7 +95,7 @@ class api_v3_MembershipPaymentTest extends CiviUnitTestCase {
    * Test civicrm_membership_payment_create - success expected.
    */
   public function testCreate() {
-    $contactId = $this->individualCreate(NULL);
+    $contactId = $this->individualCreate();
 
     $params = array(
       'contact_id' => $contactId,
@@ -135,7 +135,7 @@ class api_v3_MembershipPaymentTest extends CiviUnitTestCase {
    * Test civicrm_membershipPayment_get - success expected.
    */
   public function testGet() {
-    $contactId = $this->individualCreate(NULL);
+    $contactId = $this->individualCreate();
     $params = array(
       'contact_id' => $contactId,
       'membership_type_id' => $this->_membershipTypeID,