diff --git a/test/functional/express-error-handling.spec.ts b/test/functional/express-error-handling.spec.ts index a2931b82..f8f23256 100644 --- a/test/functional/express-error-handling.spec.ts +++ b/test/functional/express-error-handling.spec.ts @@ -116,9 +116,7 @@ describe(``, () => { } @Post('/videos') - createVideo( - @BodyParam('meta') meta: string, - ): never { + createVideo(@BodyParam('meta') meta: string): never { throw new UnprocessableEntityError('Meta is an array of strings.'); } }