tests: Remove unnecessary describe closure in auth ctrl spec

This commit is contained in:
Blade Barringer
2015-12-26 10:08:10 -06:00
parent 1c261056fe
commit d36755b64a

View File

@@ -1,8 +1,6 @@
'use strict'; 'use strict';
describe('Auth Controller', function() { describe('Auth Controller', function() {
describe('AuthCtrl', function(){
var scope, ctrl, user, $httpBackend, $window; var scope, ctrl, user, $httpBackend, $window;
beforeEach(function(){ beforeEach(function(){
@@ -42,4 +40,3 @@ describe('Auth Controller', function() {
}); });
}); });
}); });
});