Skip to content

Commit

Permalink
fix test name testBuildColumn3 to testBuildColumnUnsigned
Browse files Browse the repository at this point in the history
  • Loading branch information
imsamurai committed Nov 13, 2013
1 parent 2fcb4c3 commit 5a40944
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/Cake/Test/Case/Model/Datasource/Database/MysqlTest.php
Expand Up @@ -3157,16 +3157,16 @@ public function testBuildColumnBadType() {


/**
* testBuildColumn3 method
* Test `unsigned` field parameter
*
* @param array $data Column data
* @param string $expected Expected sql part
*
* @return void
*
* @dataProvider buildColumn3Provider
* @dataProvider buildColumnUnsignedProvider
*/
public function testBuildColumn3($data, $expected) {
public function testBuildColumnUnsigned($data, $expected) {
$restore = $this->Dbo->columns;
$this->Dbo->columns = array('string' => 1, 'integer' => 1, 'float' => 1, 'biginteger' => 1, 'any' => 1);

Expand All @@ -3177,11 +3177,11 @@ public function testBuildColumn3($data, $expected) {
}

/**
* Data provider testBuildColumn3 method
* Data provider testBuildColumnUnsigned method
*
* @return array
*/
public function buildColumn3Provider() {
public function buildColumnUnsignedProvider() {
return array(
//set #0
array(
Expand Down

0 comments on commit 5a40944

Please sign in to comment.