Explorar el Código

Fix typo missing u

Abdullah Almsaeed hace 6 años
padre
commit
89f0086020
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tests/tripal_chado/api/ChadoQueryTest.php

+ 1 - 1
tests/tripal_chado/api/ChadoQueryTest.php

@@ -106,7 +106,7 @@ class ChadoQueryTest extends TripalTestCase {
    * @group chado_db_select
    */
   public function test_chado_db_select_recognizes_non_chado_tables() {
-    $query = chado_db_select('users', '');
+    $query = chado_db_select('users', 'u');
     $query->fields('u');
     $query->range(0, 1);
     $results = $query->execute()->fetchAll();