Skip to content

Commit

Permalink
Fix wrappers
Browse files Browse the repository at this point in the history
Forgot to pass-through the params
  • Loading branch information
4O4 committed Oct 9, 2019
1 parent 0d1d147 commit 2388041
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/runner.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ observableSpy = function(observable)
local onErrorSpy = spy()
local onCompletedSpy = spy()
local observer = Rx.Observer.create(
function () onNextSpy() end,
function () onErrorSpy() end,
function (...) onNextSpy(...) end,
function (...) onErrorSpy(...) end,
function () onCompletedSpy() end
)
observable:subscribe(observer)
Expand Down

0 comments on commit 2388041

Please sign in to comment.