From e719d2df07e64433671fe3a639b1016f0998cc94 Mon Sep 17 00:00:00 2001 From: mark_story Date: Wed, 3 Sep 2014 20:08:38 -0400 Subject: [PATCH] Remove problematic test. This test will always pass in MySQL/SQLite but will always fail in Postgres/SQLserver. Since it provides no real value there is no point in keeping it. --- tests/TestCase/ORM/QueryRegressionTest.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/TestCase/ORM/QueryRegressionTest.php b/tests/TestCase/ORM/QueryRegressionTest.php index 94f0780b1bd..13cc995829f 100644 --- a/tests/TestCase/ORM/QueryRegressionTest.php +++ b/tests/TestCase/ORM/QueryRegressionTest.php @@ -418,10 +418,6 @@ public function testAssociationSubQueryNoOffset() { $query = $table->find('translations')->limit(10)->offset(1); $result = $query->toArray(); $this->assertCount(2, $result); - - $query = $table->find('translations')->having(['Articles.id >' => 1]); - $result = $query->toArray(); - $this->assertCount(2, $result); } }