Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Dec 5, 2023
1 parent 89a901a commit b8b116e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/Column/ActionColumnTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -982,13 +982,13 @@ class: static fn(array $data, DataContext $context) => [
'<a class="red" href="#" data-key="6"></a>',
new ActionButton(attributes: ['data-key' => 6], overrideAttributes: true),
['data-id' => 5],
'red'
'red',
],
'override-attributes-with-class' => [
'<a class="green" href="#" data-key="6"></a>',
new ActionButton(attributes: ['data-key' => 6], class: 'green', overrideAttributes: true),
['data-id' => 5],
'red'
'red',
],
];
}
Expand All @@ -999,8 +999,7 @@ public function testActionButtons(
ActionButton $button,
array $buttonAttributes = [],
array|string|null $buttonClass = null,
): void
{
): void {
$this->initialize(buttonAttributes: $buttonAttributes, buttonClass: $buttonClass);

$dataReader = new IterableDataReader([
Expand Down

0 comments on commit b8b116e

Please sign in to comment.