Browse Source

Fix typo missing u

Abdullah Almsaeed 6 years ago
parent
commit
89f0086020
1 changed files with 1 additions and 1 deletions
  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();