Browse Source

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

Risharde Ramnath 4 years ago
parent
commit
b2c0291cb4
1 changed files with 3 additions and 3 deletions
  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)
       ->condition('type_id', $this->supercontig_cvt)
       ->execute()->fetchObject();
       ->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);
   }
   }
 
 
   /**
   /**