From b4cd1ec1aea83f4615e4ce0d3c6802a44c57ff1a Mon Sep 17 00:00:00 2001 From: Nito Buendia Date: Thu, 13 Sep 2018 19:48:53 +0800 Subject: [PATCH] Format according to style. --- spec/core/ExceptionFormatterSpec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/core/ExceptionFormatterSpec.js b/spec/core/ExceptionFormatterSpec.js index 8596f6b9..346d4c2a 100644 --- a/spec/core/ExceptionFormatterSpec.js +++ b/spec/core/ExceptionFormatterSpec.js @@ -40,8 +40,8 @@ describe("ExceptionFormatter", function() { it('formats thrown exceptions with message but no name', function() { var unnamedError = {message: 'This is an unnamed error message.'}; - exceptionFormatter = new jasmineUnderTest.ExceptionFormatter(), - message = exceptionFormatter.message(unnamedError); + var exceptionFormatter = new jasmineUnderTest.ExceptionFormatter(), + message = exceptionFormatter.message(unnamedError); expect(message).toEqual('This is an unnamed error message.'); });