Skip to content

Commit 90900d8

Browse files
lrljoegithub-actions[bot]
authored andcommitted
Fix styling
1 parent 0a3a5da commit 90900d8

File tree

1 file changed

+11
-14
lines changed

1 file changed

+11
-14
lines changed

tests/Traits/Core/CustomAttributesTest.php

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,40 +7,37 @@
77

88
final class CustomAttributesTest extends TestCase
99
{
10-
1110
public function test_can_get_custom_attribute_defaults_false_standard_mode(): void
1211
{
1312
$this->assertSame([
14-
'default' => false,
15-
'default-colors' => true,
16-
'default-styling' => true
13+
'default' => false,
14+
'default-colors' => true,
15+
'default-styling' => true,
1716
], $this->basicTable->getCustomAttributes('bulkActionsButtonAttributes', false, true));
1817
}
1918

2019
public function test_can_get_custom_attribute_defaults_false_classic_mode(): void
2120
{
2221
$this->assertSame([
23-
'default-colors' => true,
24-
'default-styling' => true
22+
'default-colors' => true,
23+
'default-styling' => true,
2524
], $this->basicTable->getCustomAttributes('bulkActionsButtonAttributes', false, false));
2625
}
2726

2827
public function test_can_get_custom_attribute_defaults_true_standard_mode(): void
2928
{
3029
$this->assertSame([
31-
'default' => true,
32-
'default-colors' => true,
33-
'default-styling' => true
30+
'default' => true,
31+
'default-colors' => true,
32+
'default-styling' => true,
3433
], $this->basicTable->getCustomAttributes('bulkActionsButtonAttributes', true, true));
3534
}
3635

3736
public function test_can_get_custom_attribute_defaults_true_classic_mode(): void
3837
{
3938
$this->assertSame([
40-
'default-colors' => true,
41-
'default-styling' => true
39+
'default-colors' => true,
40+
'default-styling' => true,
4241
], $this->basicTable->getCustomAttributes('bulkActionsButtonAttributes', true, false));
4342
}
44-
45-
46-
}
43+
}

0 commit comments

Comments
 (0)