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 }); }));