From 7500d189239caa070806dc9cf2487068e75f71d0 Mon Sep 17 00:00:00 2001 From: ping-yee <611077101@mail.nknu.edu.tw> Date: Wed, 18 Oct 2023 10:44:40 +0800 Subject: [PATCH] style: run rector. --- tests/system/View/TableTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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',