Skip to content

Commit

Permalink
fix some small typo changing variables names
Browse files Browse the repository at this point in the history
  • Loading branch information
tranfuga25s committed Dec 5, 2014
1 parent a2d0458 commit fc756ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/TestSuite/Fixture/CakeTestFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ public function insert($db) {
$default = array_fill_keys($fields, null);
foreach ($this->records as $record) {
$merge_data = array_merge( $default, $record );
$merge = array_values( $temporal );
$merge = array_values( $merge_data );
if (count($fields) !== count($merge)) {

$merge_fields = array_keys( $merge_data );
Expand Down

0 comments on commit fc756ac

Please sign in to comment.