Skip to content

Commit

Permalink
Reorder Array
Browse files Browse the repository at this point in the history
  • Loading branch information
lrljoe authored Sep 29, 2024
1 parent a1c949a commit 0bfe53f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Traits/Helpers/ToolsStylingHelpersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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());
}
}

0 comments on commit 0bfe53f

Please sign in to comment.