Skip to content

Commit

Permalink
Fixed code style
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna authored and github-actions[bot] committed Oct 23, 2024
1 parent 7762014 commit 76fcc02
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/Unit/Screen/TDForTableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ public function testTdClass(): void
$view = TD::make('name')->class($class)
->buildTd(new Repository(['name' => 'value']));


$this->assertStringContainsString($class, $view);
}

Expand All @@ -55,7 +54,7 @@ public function testTdWidthWithCustomStyle(): void
->width($width)
->style($style)
->buildTd(new Repository([
'name' => 'value'
'name' => 'value',
]));

$this->assertStringContainsString('style="min-width:'.$width.'; '.$style.'', $view);
Expand Down

0 comments on commit 76fcc02

Please sign in to comment.