Skip to content

Commit dd793af

Browse files
committed
s/exceptions/errors
1 parent a2878e9 commit dd793af

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
@@ -117,7 +117,7 @@ public function test_validation_errors_are_returned_in_the_correct_format($error
117117
$this->assertSame('The email must be a valid email address.', $errors->email);
118118
}
119119

120-
public function test_validation_exceptions_can_have_multiple_error_bags()
120+
public function test_validation_errors_can_have_multiple_error_bags()
121121
{
122122
Session::put('errors', tap(new ViewErrorBag(), function ($errorBag) {
123123
$errorBag->put('default', new MessageBag([
@@ -139,7 +139,7 @@ public function test_validation_exceptions_can_have_multiple_error_bags()
139139
$this->assertSame('The email must be a valid email address.', $errors->example['email']);
140140
}
141141

142-
public function test_validation_exceptions_will_be_empty_when_an_invalid_value_was_set_to_the_session()
142+
public function test_validation_errors_will_be_empty_when_an_invalid_value_was_set_to_the_session()
143143
{
144144
Session::put('errors', new Request());
145145
$errors = Inertia::getShared('errors')();

0 commit comments

Comments
 (0)