From 04b26937ada1d9b707db1ac21a03062e18b076a5 Mon Sep 17 00:00:00 2001 From: Lukas Olson Date: Mon, 2 May 2016 17:47:05 -0700 Subject: [PATCH] Fix linting issues --- src/server/status/__tests__/wrap_auth_config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/status/__tests__/wrap_auth_config.js b/src/server/status/__tests__/wrap_auth_config.js index e81f5b3bbb31..060e9192dd0a 100644 --- a/src/server/status/__tests__/wrap_auth_config.js +++ b/src/server/status/__tests__/wrap_auth_config.js @@ -3,7 +3,7 @@ import wrapAuthConfig from '../wrap_auth_config'; describe('Status wrapAuthConfig', () => { let options; - + beforeEach(() => { options = { method: 'GET', @@ -13,7 +13,7 @@ describe('Status wrapAuthConfig', () => { } }; }); - + it('should return a function', () => { expect(wrapAuthConfig()).to.be.a('function'); expect(wrapAuthConfig(true)).to.be.a('function');