File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
tests/Functional/Controller Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ public function getSchema(string $name = null): Schema
87
87
}
88
88
89
89
if (!isset ($ this ->schemas [$ name ])) {
90
- throw new NotFoundHttpException (sprintf ('Could not found "%s" schema. ' , $ name ));
90
+ throw new NotFoundHttpException (sprintf ('Could not find "%s" schema. ' , $ name ));
91
91
}
92
92
93
93
$ schema = $ this ->schemas [$ name ];
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ public function testEndpointActionWithInvalidVariables(): void
166
166
public function testMultipleEndpointActionWithUnknownSchemaName (): void
167
167
{
168
168
$ this ->expectException (NotFoundHttpException::class);
169
- $ this ->expectExceptionMessage ('Could not found "fake" schema. ' );
169
+ $ this ->expectExceptionMessage ('Could not find "fake" schema. ' );
170
170
$ client = static ::createClient (['test_case ' => 'connection ' ]);
171
171
$ this ->disableCatchExceptions ($ client );
172
172
You can’t perform that action at this time.
0 commit comments