Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
lrljoe authored and github-actions[bot] committed Dec 9, 2023
1 parent 868bef0 commit d0c8dd8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/Views/Columns/DateColumnTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function can_not_get_column_reformatted_contents_with_bad_values(): void
$firstRow = $this->basicTable->getRows()->first();

$firstRow->last_visit = '44-12-2023';

$this->assertSame('', $column->getContents($firstRow));

$firstRow->last_visit = '04-01-2023';
Expand All @@ -92,13 +92,12 @@ public function can_set_column_empty_value(): void
$column->emptyValue('Not Found');
$this->assertSame('Not Found', $column->getEmptyValue());

$thirdRow = $this->basicTable->getRows()->slice(3,1)->first();
$thirdRow = $this->basicTable->getRows()->slice(3, 1)->first();

$this->assertSame('Not Found', $column->getContents($thirdRow));

$column->emptyValue('');
$this->assertSame('', $column->getContents($thirdRow));

}

}

0 comments on commit d0c8dd8

Please sign in to comment.