Skip to content

Commit

Permalink
#3567 - suppress aliases when getting connection for TestFixture
Browse files Browse the repository at this point in the history
  • Loading branch information
joerx committed May 26, 2014
1 parent 50e61a1 commit f6c5571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TestSuite/Fixture/TestFixture.php
Expand Up @@ -193,7 +193,7 @@ protected function _schemaFromImport() {
throw new Error\Exception('Cannot import from undefined table.');
}

$db = ConnectionManager::get($import['connection']);
$db = ConnectionManager::get($import['connection'], false);
$schemaCollection = $db->schemaCollection();
$table = $schemaCollection->describe($import['table']);
$this->_schema = $table;
Expand Down

0 comments on commit f6c5571

Please sign in to comment.