Skip to content

Commit

Permalink
Rename tests
Browse files Browse the repository at this point in the history
  • Loading branch information
antoine committed Oct 18, 2023
1 parent 4d25637 commit fc642e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Unit/Form/Eloquent/SharpFormEloquentUpdaterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function update($id, array $data)
]);
});

it('undeclared fields are ignored', function () {
it('ignores undeclared fields', function () {
$person = Person::create(['name' => 'Marie Curie', 'age' => 21]);

$form = new class extends FakeSharpForm
Expand All @@ -84,7 +84,7 @@ public function update($id, array $data)
]);
});

it('HTML fields are ignored', function () {
it('ignores SharpFormHtmlField fields', function () {
$person = Person::create(['name' => 'Marie Curie', 'age' => 21]);

$form = new class extends FakeSharpForm
Expand Down

0 comments on commit fc642e8

Please sign in to comment.