Skip to content

Commit

Permalink
style: run rector.
Browse files Browse the repository at this point in the history
  • Loading branch information
ping-yee committed Oct 20, 2023
1 parent df4b7c6 commit 39903e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/system/View/TableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -822,7 +822,7 @@ public static function orderedColumnUsecases(): iterable
*/
public function testGenerateTableWithHeadingContainFieldNamedData(): void
{
$table_template = [
$tableTemplate = [
'table_open' => '<table border="1" cellpadding="2" cellspacing="1">',

'thead_open' => '<thead>',
Expand Down Expand Up @@ -857,7 +857,7 @@ public function testGenerateTableWithHeadingContainFieldNamedData(): void
'table_close' => '</table>',
];

$table = new \CodeIgniter\View\Table($table_template);
$table = new Table($tableTemplate);
$table->setHeading([
'codigo' => 'Codigo Orçamento',
'data' => 'Data do Orçamento',
Expand Down

0 comments on commit 39903e6

Please sign in to comment.