Skip to content

Commit 5a40944

Browse files
author
imsamurai
committed
fix test name testBuildColumn3 to testBuildColumnUnsigned
1 parent 2fcb4c3 commit 5a40944

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/Cake/Test/Case/Model/Datasource/Database/MysqlTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3157,16 +3157,16 @@ public function testBuildColumnBadType() {
31573157

31583158

31593159
/**
3160-
* testBuildColumn3 method
3160+
* Test `unsigned` field parameter
31613161
*
31623162
* @param array $data Column data
31633163
* @param string $expected Expected sql part
31643164
*
31653165
* @return void
31663166
*
3167-
* @dataProvider buildColumn3Provider
3167+
* @dataProvider buildColumnUnsignedProvider
31683168
*/
3169-
public function testBuildColumn3($data, $expected) {
3169+
public function testBuildColumnUnsigned($data, $expected) {
31703170
$restore = $this->Dbo->columns;
31713171
$this->Dbo->columns = array('string' => 1, 'integer' => 1, 'float' => 1, 'biginteger' => 1, 'any' => 1);
31723172

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

31793179
/**
3180-
* Data provider testBuildColumn3 method
3180+
* Data provider testBuildColumnUnsigned method
31813181
*
31823182
* @return array
31833183
*/
3184-
public function buildColumn3Provider() {
3184+
public function buildColumnUnsignedProvider() {
31853185
return array(
31863186
//set #0
31873187
array(

0 commit comments

Comments
 (0)