Abdullah Almsaeed il y a 7 ans
Parent
commit
c8f8026760

+ 1 - 2
tests/tripal/api/TripalJobsApiTest.php

@@ -16,6 +16,5 @@ class TripalJobsApiTest extends TripalTestCase {
   public function should_create_a_tripal_job() {
     $job_id = tripal_add_job('Test adding jobs', 'tripal', 'tripal_tripal_cron_notification', [], 1);
     $this->assertTrue(is_numeric($job_id));
-
   }
-}
+}

+ 2 - 5
tests/tripal_chado/api/TripalChadoAPITest.php

@@ -8,15 +8,12 @@ class TripalChadoAPITest extends TripalTestCase {
 
   use DBTransaction;
 
-
   /**
    * Test the ability to publish Chado organism records as entities.
    *
    * @group api
    */
-
   public function test_tripal_chado_publish_records() {
-
     $genus_string = 'a_genius_genus';
     //create an organism, publish it
     $organism = factory('chado.organism')->create([
@@ -63,9 +60,9 @@ class TripalChadoAPITest extends TripalTestCase {
    *
    * @group api
    */
-  public function test_tripal_get_chado_tokens(){
+  public function test_tripal_get_chado_tokens() {
     $tokens = tripal_get_chado_tokens('organism');
     $this->assertNotEmpty($tokens);
     $this->assertArrayHasKey('[organism.organism_id]', $tokens);
   }
-}
+}

+ 1 - 3
tests/tripal_chado/api/TripalChadoOrganismAPITest.php

@@ -8,14 +8,12 @@ class TripalChadoOrganismAPITest extends TripalTestCase {
 
   use DBTransaction;
 
-
   /**
    * Test tripal_get_organism.
    *
    * @group api
    */
   public function test_tripal_get_organism() {
-
     $genus_string = 'a_genius_genus';
     $species_string = 'fake_species';
 
@@ -111,4 +109,4 @@ class TripalChadoOrganismAPITest extends TripalTestCase {
   //  }
 
 
-}
+}