Skip to content

Commit ae65cf6

Browse files
committed
Fix plugin-test
1 parent 19be2c2 commit ae65cf6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/plugin/coreplugins/coreplugins.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ describe('CorePlugins', function () {
136136
expect(err).to.equal(null, err && err.message);
137137
// As pluginNames contains unique names, we can check that each is
138138
// in the response and the response is the proper length
139-
expect(res.body.length).to.equal(pluginNames.length + 2); // Accounting for Abort/Wait plugins
139+
// Accounting for Abort/Wait/Executor plugins
140+
expect(res.body.length).to.equal(pluginNames.length + 3);
140141
done();
141142
});
142143
});

0 commit comments

Comments
 (0)