File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -771,7 +771,7 @@ public function test_link_is_not_created_with_invalid_url($case)
771
771
' description' => ' Example description' ,
772
772
]);
773
773
774
- $response->assertSessionHasErrors([' url' => ' The url format is invalid .' ]);
774
+ $response->assertSessionHasErrors([' url' => ' The url must be a valid URL .' ]);
775
775
}
776
776
```
777
777
@@ -790,9 +790,9 @@ public function test_max_length_fails_when_too_long()
790
790
->post(' /submit' , compact(' title' , ' url' , ' description' ));
791
791
792
792
$response->assertSessionHasErrors([
793
- ' url' => ' The url may not be greater than 255 characters.' ,
794
- ' title' => ' The title may not be greater than 255 characters.' ,
795
- ' description' => ' The description may not be greater than 255 characters.' ,
793
+ ' url' => ' The url must not be greater than 255 characters.' ,
794
+ ' title' => ' The title must not be greater than 255 characters.' ,
795
+ ' description' => ' The description must not be greater than 255 characters.' ,
796
796
]);
797
797
}
798
798
You can’t perform that action at this time.
0 commit comments