From 47f9e171fcc1e3e24c38b1bb381b8303dc8341d4 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Thu, 9 Nov 2017 23:32:22 -0500 Subject: Move numConfirmations to constructor call --- test/event_watcher_test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/event_watcher_test.ts b/test/event_watcher_test.ts index 8f3898287..36153c207 100644 --- a/test/event_watcher_test.ts +++ b/test/event_watcher_test.ts @@ -58,7 +58,7 @@ describe('EventWatcher', () => { web3 = web3Factory.create(); const pollingIntervalMs = 10; web3Wrapper = new Web3Wrapper(web3.currentProvider); - eventWatcher = new EventWatcher(web3Wrapper, pollingIntervalMs); + eventWatcher = new EventWatcher(web3Wrapper, pollingIntervalMs, numConfirmations); }); afterEach(() => { // clean up any stubs after the test has completed @@ -88,7 +88,7 @@ describe('EventWatcher', () => { done(); } }; - eventWatcher.subscribe(callback, numConfirmations); + eventWatcher.subscribe(callback); }); it('correctly computes the difference and emits only changes', (done: DoneCallback) => { const initialLogs: Web3.LogEntry[] = [logA, logB]; @@ -122,6 +122,6 @@ describe('EventWatcher', () => { done(); } }; - eventWatcher.subscribe(callback, numConfirmations); + eventWatcher.subscribe(callback); }); }); -- cgit v1.2.3