Removed unused variable from home.client.controller.test.js

This commit is contained in:
David Baldwynn 2017-04-22 19:33:11 -07:00 committed by GitHub
parent ddb7e68836
commit 8122044a51

View file

@ -3,8 +3,7 @@
(function() { (function() {
describe('HomeController', function() { describe('HomeController', function() {
//Initialize global variables //Initialize global variables
var scope, var scope;
HomeController;
// Load the main application module // Load the main application module
beforeEach(module(ApplicationConfiguration.applicationModuleName)); beforeEach(module(ApplicationConfiguration.applicationModuleName));
@ -12,7 +11,7 @@
beforeEach(inject(function($controller, $rootScope) { beforeEach(inject(function($controller, $rootScope) {
scope = $rootScope.$new(); scope = $rootScope.$new();
HomeController = $controller('HomeController', { $controller('HomeController', {
$scope: scope $scope: scope
}); });
})); }));