@@ -106,7 +106,7 @@ describe('Strategy', function() {
106106 } ) ;
107107 } ) ;
108108
109- describe ( 'handling a request without a body, but no username and password' , function ( ) {
109+ describe ( 'handling a request with a body, but no username and password' , function ( ) {
110110 var strategy = new Strategy ( function ( username , password , done ) {
111111 throw new Error ( 'should not be called' ) ;
112112 } ) ;
@@ -133,7 +133,7 @@ describe('Strategy', function() {
133133 } ) ;
134134 } ) ;
135135
136- describe ( 'handling a request without a body, but no password' , function ( ) {
136+ describe ( 'handling a request with a body, but no password' , function ( ) {
137137 var strategy = new Strategy ( function ( username , password , done ) {
138138 throw new Error ( 'should not be called' ) ;
139139 } ) ;
@@ -161,7 +161,7 @@ describe('Strategy', function() {
161161 } ) ;
162162 } ) ;
163163
164- describe ( 'handling a request without a body, but no username' , function ( ) {
164+ describe ( 'handling a request with a body, but no username' , function ( ) {
165165 var strategy = new Strategy ( function ( username , password , done ) {
166166 throw new Error ( 'should not be called' ) ;
167167 } ) ;
0 commit comments