@@ -105,7 +105,7 @@ describe('Strategy', function() {
105105 } ) ;
106106 } ) ;
107107
108- describe ( 'handling a request without a body, but no username and password' , function ( ) {
108+ describe ( 'handling a request with a body, but no username and password' , function ( ) {
109109 var strategy = new Strategy ( function ( username , password , done ) {
110110 throw new Error ( 'should not be called' ) ;
111111 } ) ;
@@ -132,7 +132,7 @@ describe('Strategy', function() {
132132 } ) ;
133133 } ) ;
134134
135- describe ( 'handling a request without a body, but no password' , function ( ) {
135+ describe ( 'handling a request with a body, but no password' , function ( ) {
136136 var strategy = new Strategy ( function ( username , password , done ) {
137137 throw new Error ( 'should not be called' ) ;
138138 } ) ;
@@ -160,7 +160,7 @@ describe('Strategy', function() {
160160 } ) ;
161161 } ) ;
162162
163- describe ( 'handling a request without a body, but no username' , function ( ) {
163+ describe ( 'handling a request with a body, but no username' , function ( ) {
164164 var strategy = new Strategy ( function ( username , password , done ) {
165165 throw new Error ( 'should not be called' ) ;
166166 } ) ;
0 commit comments