diff --git a/tests/Unit/Screen/TDForTableTest.php b/tests/Unit/Screen/TDForTableTest.php index 96a529109..36e036adc 100644 --- a/tests/Unit/Screen/TDForTableTest.php +++ b/tests/Unit/Screen/TDForTableTest.php @@ -42,7 +42,6 @@ public function testTdClass(): void $view = TD::make('name')->class($class) ->buildTd(new Repository(['name' => 'value'])); - $this->assertStringContainsString($class, $view); } @@ -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);