Skip to content

Commit 4a82ff2

Browse files
lrljoegithub-actions[bot]
authored andcommitted
Fix styling
1 parent 3d72a35 commit 4a82ff2

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

tests/Unit/Views/Columns/ColumnTestCase.php

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,15 @@ public function test_can_check_if_is_reorder_column(): void
4242
$this->assertFalse(self::$columnInstance->isReorderColumn());
4343

4444
}
45-
45+
4646
public function test_can_get_sorting_pills_direction_deprecated(): void
4747
{
48-
$this->assertSame('A-Z',self::$columnInstance->getSortingPillDirection($this->basicTable,'asc'));
49-
$this->assertSame('Z-A', self::$columnInstance->getSortingPillDirection($this->basicTable,'desc'));
48+
$this->assertSame('A-Z', self::$columnInstance->getSortingPillDirection($this->basicTable, 'asc'));
49+
$this->assertSame('Z-A', self::$columnInstance->getSortingPillDirection($this->basicTable, 'desc'));
5050

5151
self::$columnInstance->setSortingPillDirections('1-2', '2-1');
52-
$this->assertSame('1-2',self::$columnInstance->getSortingPillDirection($this->basicTable,'asc'));
53-
$this->assertSame('2-1',self::$columnInstance->getSortingPillDirection($this->basicTable,'desc'));
52+
$this->assertSame('1-2', self::$columnInstance->getSortingPillDirection($this->basicTable, 'asc'));
53+
$this->assertSame('2-1', self::$columnInstance->getSortingPillDirection($this->basicTable, 'desc'));
5454

5555
}
56-
57-
5856
}

0 commit comments

Comments
 (0)