@@ -67,7 +67,7 @@ describe('ExpressOAuthServer', function() {
6767 } ) ;
6868
6969 describe ( 'authorize()' , function ( ) {
70- it ( 'should call `authorize() and end middleware execution` ' , function ( done ) {
70+ it ( 'should call `authorize()` and end middleware execution' , function ( done ) {
7171 var nextMiddleware = sinon . spy ( )
7272 var oauth = new ExpressOAuthServer ( { model : { } } ) ;
7373
@@ -90,7 +90,7 @@ describe('ExpressOAuthServer', function() {
9090 } ) ;
9191 } ) ;
9292
93- it ( 'should call `authorize() and continue middleware chain` ' , function ( done ) {
93+ it ( 'should call `authorize()` and continue middleware chain' , function ( done ) {
9494 var nextMiddleware = sinon . spy ( )
9595 var oauth = new ExpressOAuthServer ( { model : { } , continueMiddleware : true } ) ;
9696
@@ -136,7 +136,7 @@ describe('ExpressOAuthServer', function() {
136136 } ) ;
137137
138138 describe ( 'token()' , function ( ) {
139- it ( 'should call `token() and end middleware chain` ' , function ( done ) {
139+ it ( 'should call `token()` and end middleware chain' , function ( done ) {
140140 var nextMiddleware = sinon . spy ( )
141141 var oauth = new ExpressOAuthServer ( { model : { } } ) ;
142142
@@ -159,7 +159,7 @@ describe('ExpressOAuthServer', function() {
159159 } ) ;
160160 } ) ;
161161
162- it ( 'should call `token() and continue middleware chain` ' , function ( done ) {
162+ it ( 'should call `token()` and continue middleware chain' , function ( done ) {
163163 var nextMiddleware = sinon . spy ( )
164164 var oauth = new ExpressOAuthServer ( { model : { } , continueMiddleware : true } ) ;
165165
0 commit comments