Skip to content

Commit 36b1049

Browse files
committed
Add missing period to tests
1 parent 19d96c2 commit 36b1049

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ServiceProviderTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ public function test_validation_errors_are_returned_in_the_correct_format()
7070
{
7171
Session::put('errors', new MessageBag([
7272
'name' => 'The name field is required.',
73-
'email' => 'Not a valid email address',
73+
'email' => 'Not a valid email address.',
7474
]));
7575

7676
$errors = Inertia::getShared('errors')();
7777

7878
$this->assertIsObject($errors);
7979
$this->assertSame('The name field is required.', $errors->name);
80-
$this->assertSame('Not a valid email address', $errors->email);
80+
$this->assertSame('Not a valid email address.', $errors->email);
8181
}
8282
}

0 commit comments

Comments
 (0)