mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-02 17:42:41 +00:00
case fix for SchemaShell test
This commit is contained in:
parent
fe2ec74b0e
commit
245c207096
1 changed files with 2 additions and 2 deletions
|
@ -173,7 +173,7 @@ class SchemaShellTest extends CakeTestCase {
|
|||
*/
|
||||
public function testView() {
|
||||
$this->Shell->startup();
|
||||
$this->Shell->Schema->path = APP . 'Config' . DS . 'schema';
|
||||
$this->Shell->Schema->path = APP . 'Config' . DS . 'Schema';
|
||||
$this->Shell->params['file'] = 'i18n.php';
|
||||
$this->Shell->expects($this->once())->method('_stop');
|
||||
$this->Shell->expects($this->once())->method('out');
|
||||
|
@ -400,7 +400,7 @@ class SchemaShellTest extends CakeTestCase {
|
|||
$this->Shell->params = array(
|
||||
'connection' => 'test',
|
||||
'name' => 'DbAcl',
|
||||
'path' => APP . 'Config' . DS . 'schema'
|
||||
'path' => APP . 'Config' . DS . 'Schema'
|
||||
);
|
||||
$this->Shell->args = array('DbAcl', 'acos');
|
||||
$this->Shell->startup();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue