whitespace

This commit is contained in:
AD7six 2012-01-10 10:51:06 +01:00
parent d5fdf45e51
commit a62c5350b3

View file

@ -3435,11 +3435,11 @@ class SetTest extends CakeTestCase {
);
$result = Set::nest($input, array('idPath' => '/id', 'parentPath' => '/parent_id'));
foreach($result as &$row) {
if (empty($row['children'])) {
unset($row['children']);
}
}
foreach($result as &$row) {
if (empty($row['children'])) {
unset($row['children']);
}
}
$this->assertEquals($input, $result);
}
}