mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-08 04:22:40 +00:00
Skipping tests on Sqlite that involve creating a duplicate connection/ It is not possible to open multiple connections to it
This commit is contained in:
parent
149deba416
commit
12c73806f4
3 changed files with 5 additions and 0 deletions
|
@ -649,6 +649,7 @@ class CakeSchemaTest extends CakeTestCase {
|
|||
* @return void
|
||||
*/
|
||||
public function testSchemaReadWithConfigPrefix() {
|
||||
$this->skipIf($this->db instanceof Sqlite, 'Cannot open 2 connections to Sqlite');
|
||||
$db = ConnectionManager::getDataSource('test');
|
||||
$config = $db->config;
|
||||
$config['prefix'] = 'schema_test_prefix_';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue