diff --git a/test/strategy.normal.test.js b/test/strategy.normal.test.js index a7e2139..24f8647 100644 --- a/test/strategy.normal.test.js +++ b/test/strategy.normal.test.js @@ -105,7 +105,7 @@ describe('Strategy', function() { }); }); - describe('handling a request without a body, but no username and password', function() { + describe('handling a request with a body, but no username and password', function() { var strategy = new Strategy(function(username, password, done) { throw new Error('should not be called'); }); @@ -132,7 +132,7 @@ describe('Strategy', function() { }); }); - describe('handling a request without a body, but no password', function() { + describe('handling a request with a body, but no password', function() { var strategy = new Strategy(function(username, password, done) { throw new Error('should not be called'); }); @@ -160,7 +160,7 @@ describe('Strategy', function() { }); }); - describe('handling a request without a body, but no username', function() { + describe('handling a request with a body, but no username', function() { var strategy = new Strategy(function(username, password, done) { throw new Error('should not be called'); }); diff --git a/test/strategy.options.test.js b/test/strategy.options.test.js index 1c42c6c..8987e91 100644 --- a/test/strategy.options.test.js +++ b/test/strategy.options.test.js @@ -6,8 +6,8 @@ var chai = require('chai') describe('Strategy', function() { - - describe('handling a request without a body, but no username and password, with message option to authenticate', function() { + + describe('handling a request with a body, but no username and password, with message option to authenticate', function() { var strategy = new Strategy(function(username, password, done) { throw new Error('should not be called'); });