Coding standards cleanup sprint.
[civicrm-core.git] / tests / phpunit / api / v3 / ActivityContactTest.php
index 8de021d7f1376f8d6c211243ab17896cef74c8cf..8e77611cc517bfb6799b5f41f4743dfb398342d8 100644 (file)
@@ -79,12 +79,15 @@ class api_v3_ActivityContactTest extends CiviUnitTestCase {
     $this->assertEquals(0, $get['count'], 'ActivityContact not successfully deleted');
   }
 
+  /**
+   *
+   */
   public function testGetActivitiesByContact() {
-    $result = $this->callAPISuccess('ActivityContact', 'Get', array('contact_id' => $this->_contactID));
+    $this->callAPISuccess('ActivityContact', 'Get', array('contact_id' => $this->_contactID));
   }
 
-  public function testGetPartitipantsByActivity() {
-    $result = $this->callAPISuccess('ActivityContact', 'Get', array('activity_id' => $this->_activityID));
+  public function testGetParticipantsByActivity() {
+    $this->callAPISuccess('ActivityContact', 'Get', array('activity_id' => $this->_activityID));
   }
 
   /**