Skip to content

Commit

Permalink
Fix more missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
dissto authored Dec 20, 2024
1 parent e270db4 commit a0dda42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/forms/docs/09-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ use Filament\Forms\Components\Component;

use function Pest\Livewire\livewire;

test('comments section has heading' function () {
test('comments section has heading', function () {
livewire(EditPost::class)
->assertFormComponentExists(
'comments-section',
Expand All @@ -270,7 +270,7 @@ use Illuminate\Testing\Assert;

use function Pest\Livewire\livewire;

test('comments section is enabled' function () {
test('comments section is enabled', function () {
livewire(EditPost::class)
->assertFormComponentExists(
'comments-section',
Expand Down

0 comments on commit a0dda42

Please sign in to comment.