Skip to content

Commit

Permalink
Fix CS errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Apr 4, 2013
1 parent b0574e7 commit 431ab2a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lib/Cake/Test/Case/Console/Command/SchemaShellTest.php
Expand Up @@ -515,18 +515,18 @@ public function testUpdateWithTable() {
$this->Shell->update();
}

/**
* test run update with a table arg. and checks that a CREATE statement is issued
* table creation
* @return void
*/
/**
* test run update with a table arg. and checks that a CREATE statement is issued
* table creation
* @return void
*/
public function testUpdateWithTableCreate() {
$this->Shell = $this->getMock(
'SchemaShell',
array('in', 'out', 'hr', 'createFile', 'error', 'err', '_stop', '_run'),
array(&$this->Dispatcher)
);

$this->Shell->params = array(
'connection' => 'test',
'force' => true
Expand All @@ -539,7 +539,7 @@ public function testUpdateWithTableCreate() {
$r = $this->Shell->expects($this->once())
->method('_run')
->with($this->arrayHasKey('newone'), 'update', $this->isInstanceOf('CakeSchema'));

$this->Shell->update();
}

Expand Down

0 comments on commit 431ab2a

Please sign in to comment.