Browse Source

Lazy test fix for postgres

Jose Lorenzo Rodriguez 10 years ago
parent
commit
9c62d273f3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/ORM/QueryTest.php

+ 1 - 1
tests/TestCase/ORM/QueryTest.php

@@ -2758,7 +2758,7 @@ class QueryTest extends TestCase
                     ->where(['tags.name' => 'tag3']);
             })
             ->autoFields(true)
-            ->where(['ArticlesTags.tag_id IS NOT' => null])
+            ->where(['ArticlesTags.tag_id' => 3])
             ->group(['authors.id'])
             ->all();