Răsfoiți Sursa

Fixed testGFFImporterAttributeFastas() test, assertion values were based on the wrong file. Updated with the correct string lengths and md5 values

Risharde Ramnath 4 ani în urmă
părinte
comite
b2c0291cb4
1 a modificat fișierele cu 3 adăugiri și 3 ștergeri
  1. 3 3
      tests/tripal_chado/loaders/GFF3ImporterTest.php

+ 3 - 3
tests/tripal_chado/loaders/GFF3ImporterTest.php

@@ -399,9 +399,9 @@ class GFF3ImporterTest extends TripalTestCase {
       ->condition('type_id', $this->supercontig_cvt)
       ->execute()->fetchObject();
 
-    $this->assertEquals(1000, $scaffold->seqlen);
-    $this->assertEquals(1000, strlen($scaffold->residues));
-    $this->assertEquals('0154424abe69dd64cd428c330d480ba0', $scaffold->md5checksum);
+    $this->assertEquals(720, $scaffold->seqlen);
+    $this->assertEquals(720, strlen($scaffold->residues));
+    $this->assertEquals('83578d8afdaec399c682aa6c0ddd29c9', $scaffold->md5checksum);
   }
 
   /**