mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Ticket 4108
- updated DboSourceTest::testFieldsCacheKeyWithSchemanameChange() to skip for Postgres and Sqlserver
This commit is contained in:
parent
0f7d6a90a1
commit
56f1c9b8b5
1 changed files with 3 additions and 0 deletions
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue