From df2c87326f2d6cafd2f201c0ea038e1e3744404b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vesa=20Poikaj=C3=A4rvi?= Date: Tue, 23 May 2017 13:55:29 +0300 Subject: [PATCH] [convict] incorrect whitespace fixed from test --- types/convict/convict-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/convict/convict-tests.ts b/types/convict/convict-tests.ts index 10f5813185..0451954ca1 100644 --- a/types/convict/convict-tests.ts +++ b/types/convict/convict-tests.ts @@ -115,7 +115,7 @@ conf .loadFile('./config/' + env + '.json') .load({ jsonKey: 'jsonValue' }) .set('key', 'value') - .validate( {allowed: 'warn'} ) + .validate({ allowed: 'warn' }) .toString(); var port: number = conf.default('port');