From c7b467e42e5d876aee69e4430d0cd6252134289a Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Wed, 25 Mar 2015 21:07:30 +0700 Subject: [PATCH] mocha.d.ts: Boolean should be boolean. --- mocha/mocha.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mocha/mocha.d.ts b/mocha/mocha.d.ts index 6a2a539593..3f5d3e5710 100644 --- a/mocha/mocha.d.ts +++ b/mocha/mocha.d.ts @@ -37,10 +37,10 @@ interface MochaSetupOptions { reporter?: any; // bail on the first test failure - bail?: Boolean; + bail?: boolean; // ignore global leaks - ignoreLeaks?: Boolean; + ignoreLeaks?: boolean; // grep string or regexp to filter tests with grep?: any;