Skip to content

Commit

Permalink
Ticket 4108
Browse files Browse the repository at this point in the history
- updated DboSourceTest::testFieldsCacheKeyWithSchemanameChange() to skip for Postgres and Sqlserver
  • Loading branch information
Andy Hobbs authored and Andy Hobbs committed Sep 27, 2013
1 parent 0f7d6a9 commit 56f1c9b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/Cake/Test/Case/Model/Datasource/DboSourceTest.php
Expand Up @@ -951,6 +951,9 @@ public function testFieldsCacheKeyWithDatasourceChange() {
* @return void
*/
public function testFieldsCacheKeyWithSchemanameChange() {
if ($this->db instanceof Postgres || $this->db instanceof Sqlserver) {
$this->markTestSkipped('Cannot run this test with SqlServer or Postgres');
}
Cache::delete('method_cache', '_cake_core_');
DboSource::$methodCache = array();
$Article = ClassRegistry::init('Article');
Expand Down

0 comments on commit 56f1c9b

Please sign in to comment.