From 8122044a51560fc4512b9e09bf232338b111a116 Mon Sep 17 00:00:00 2001 From: David Baldwynn Date: Sat, 22 Apr 2017 19:33:11 -0700 Subject: [PATCH] Removed unused variable from home.client.controller.test.js --- .../tests/unit/controllers/home.client.controller.test.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/public/modules/core/tests/unit/controllers/home.client.controller.test.js b/public/modules/core/tests/unit/controllers/home.client.controller.test.js index 002352d5..178f4ba8 100755 --- a/public/modules/core/tests/unit/controllers/home.client.controller.test.js +++ b/public/modules/core/tests/unit/controllers/home.client.controller.test.js @@ -3,8 +3,7 @@ (function() { describe('HomeController', function() { //Initialize global variables - var scope, - HomeController; + var scope; // Load the main application module beforeEach(module(ApplicationConfiguration.applicationModuleName)); @@ -12,7 +11,7 @@ beforeEach(inject(function($controller, $rootScope) { scope = $rootScope.$new(); - HomeController = $controller('HomeController', { + $controller('HomeController', { $scope: scope }); }));