diff --git a/tests/Traits/Helpers/ToolsStylingHelpersTest.php b/tests/Traits/Helpers/ToolsStylingHelpersTest.php index 519e9e071..69ea57b4b 100644 --- a/tests/Traits/Helpers/ToolsStylingHelpersTest.php +++ b/tests/Traits/Helpers/ToolsStylingHelpersTest.php @@ -13,7 +13,7 @@ public function test_can_get_tools_attributes_initial_status(): void public function test_can_get_tools_attributes_initial_values(): void { - $this->assertSame(['default-styling' => true, 'default-colors' => true, 'class' => ''], $this->basicTable->getToolsAttributesBag()->getAttributes()); + $this->assertSame(['class' => '', 'default-colors' => true, 'default-styling' => true], $this->basicTable->getToolsAttributesBag()->getAttributes()); } public function test_can_get_toolbar_attributes_initial_status(): void @@ -23,6 +23,6 @@ public function test_can_get_toolbar_attributes_initial_status(): void public function test_can_get_toolbar_attributes_initial_values(): void { - $this->assertSame(['default-styling' => true, 'default-colors' => true, 'class' => ''], $this->basicTable->getToolBarAttributesBag()->getAttributes()); + $this->assertSame(['class' => '', 'default-colors' => true, 'default-styling' => true], $this->basicTable->getToolBarAttributesBag()->getAttributes()); } }