Skip to content

Commit 88849de

Browse files
author
Rowan Wookey
committed
Merge remote-tracking branch 'JamesMGreene/patch-2' jaredhanson#121
2 parents 96bc94a + 355538d commit 88849de

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

test/strategy.normal.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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
});

test/strategy.options.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ var chai = require('chai')
77
chai.use(require('chai-passport-strategy'));
88

99
describe('Strategy', function() {
10-
11-
describe('handling a request without a body, but no username and password, with message option to authenticate', function() {
10+
11+
describe('handling a request with a body, but no username and password, with message option to authenticate', function() {
1212
var strategy = new Strategy(function(username, password, done) {
1313
throw new Error('should not be called');
1414
});

0 commit comments

Comments
 (0)