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