From e70450602e22f1c87506f16d4ae361fe3db12fea Mon Sep 17 00:00:00 2001 From: Mark Tsai Date: Thu, 3 Jan 2019 21:18:56 +0800 Subject: [PATCH] fix(test): modify wordings in strategy.normal.test.js --- test/strategy.normal.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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'); });