Skip to content

Commit

Permalink
Merge pull request #152 from opentable/fix-plugin-mocks
Browse files Browse the repository at this point in the history
woopsy, I broke `oc dev`
  • Loading branch information
matteofigus committed Nov 23, 2015
2 parents 6646308 + 1b06979 commit ea26af9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/domain/get-mocked-plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var registerStaticMocks = function(mocks, logger){
return {
name: pluginName,
register: {
register: function(options, next){
register: function(options, dependencies, next){
return next();
},
execute: function(){
Expand Down Expand Up @@ -43,7 +43,7 @@ var registerDynamicMocks = function(mocks, logger){
return {
name: pluginName,
register: {
register: function(options, next){
register: function(options, dependencies, next){
return next();
},
execute: p
Expand Down

0 comments on commit ea26af9

Please sign in to comment.