diff --git a/tests/system/View/TableTest.php b/tests/system/View/TableTest.php index 492206cefd3b..1eb0939fa1c3 100644 --- a/tests/system/View/TableTest.php +++ b/tests/system/View/TableTest.php @@ -822,7 +822,7 @@ public static function orderedColumnUsecases(): iterable */ public function testGenerateTableWithHeadingContainFieldNamedData(): void { - $table_template = [ + $tableTemplate = [ 'table_open' => '', 'thead_open' => '', @@ -857,7 +857,7 @@ public function testGenerateTableWithHeadingContainFieldNamedData(): void 'table_close' => '
', ]; - $table = new \CodeIgniter\View\Table($table_template); + $table = new Table($tableTemplate); $table->setHeading([ 'codigo' => 'Codigo Orçamento', 'data' => 'Data do Orçamento',