Skip to content

Commit 99ea4e7

Browse files
lrljoegithub-actions[bot]
authored andcommitted
Fix styling
1 parent b8a7a58 commit 99ea4e7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/Views/Traits/Helpers/ColumnHelpersTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,14 @@ public function test_can_set_custom_sorting_pill_title(): void
108108
$this->assertSame('New Title', $column->getCustomSortingPillTitle());
109109
}
110110

111-
112111
public function test_can_get_standard_sorting_pill_directions(): void
113112
{
114113
$column = Column::make('My Title');
115114

116115
$this->assertFalse($column->hasCustomSortingPillDirections());
117116

118117
$this->assertSame(__('livewire-tables::not_applicable'), $column->getCustomSortingPillDirections('asc'));
119-
$this->assertSame(__('livewire-tables::not_applicable'), $column->getCustomSortingPillDirections('desc'));
118+
$this->assertSame(__('livewire-tables::not_applicable'), $column->getCustomSortingPillDirections('desc'));
120119
}
121120

122121
public function test_can_set_custom_sorting_pill_directions(): void

0 commit comments

Comments
 (0)