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';
describe('Auth Controller', function() {
describe('AuthCtrl', function(){
var scope, ctrl, user, $httpBackend, $window;
beforeEach(function(){
@@ -41,5 +39,4 @@ describe('Auth Controller', function() {
expect($window.alert).to.be.calledOnce;
});
});
});
});