Merge pull request #1686 from andydhobbs/ticket-4108

Fixes bad merge of #1683.

Refs #4108.
This commit is contained in:
Frank de Graaf 2013-09-27 05:53:10 -07:00
commit 41a7739b69

View file

@ -951,6 +951,9 @@ class DboSourceTest extends CakeTestCase {
* @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');