Skip to content

Commit 6e09a07

Browse files
committed
Fix the name of 2 tests on plugins behavior
1 parent 2723337 commit 6e09a07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/plugins-behavior.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('plugin behavior', () => {
2828
});
2929
});
3030

31-
it('will provide three arguments to in req, res, data, next format', (done) => {
31+
it('will provide four arguments to in req, res, data, next format', (done) => {
3232
var plugins = {
3333
'ondata_request': function(req, res, data, next) {
3434
assert.equal(req, 'foo');
@@ -51,7 +51,7 @@ describe('plugin behavior', () => {
5151
});
5252
});
5353

54-
it('will provide three arguments to in req, res, targetRes, data, next format', (done) => {
54+
it('will provide five arguments to in req, res, targetRes, data, next format', (done) => {
5555
var plugins = {
5656
'ondata_request': function(req, res, targetResponse, data, next) {
5757
assert.equal(req, 'foo');

0 commit comments

Comments
 (0)