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
8787 }
8888
8989 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 ));
9191 }
9292
9393 $ schema = $ this ->schemas [$ name ];
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ public function testEndpointActionWithInvalidVariables(): void
166166 public function testMultipleEndpointActionWithUnknownSchemaName (): void
167167 {
168168 $ this ->expectException (NotFoundHttpException::class);
169- $ this ->expectExceptionMessage ('Could not found "fake" schema. ' );
169+ $ this ->expectExceptionMessage ('Could not find "fake" schema. ' );
170170 $ client = static ::createClient (['test_case ' => 'connection ' ]);
171171 $ this ->disableCatchExceptions ($ client );
172172
You can’t perform that action at this time.
0 commit comments