Skip to content

Commit

Permalink
Remove problematic test.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
markstory committed Sep 4, 2014
1 parent 89a56a4 commit e719d2d
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/TestCase/ORM/QueryRegressionTest.php
Expand Up @@ -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);
}

}

0 comments on commit e719d2d

Please sign in to comment.