aboutsummaryrefslogtreecommitdiffstats
path: root/packages/connect/test/orders_channel_factory_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/connect/test/orders_channel_factory_test.ts')
-rw-r--r--packages/connect/test/orders_channel_factory_test.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/connect/test/orders_channel_factory_test.ts b/packages/connect/test/orders_channel_factory_test.ts
index fcd07dd35..58f7e08d9 100644
--- a/packages/connect/test/orders_channel_factory_test.ts
+++ b/packages/connect/test/orders_channel_factory_test.ts
@@ -9,9 +9,9 @@ chai.config.includeStack = true;
chai.use(dirtyChai);
const expect = chai.expect;
const emptyOrdersChannelHandler = {
- onUpdate: _.noop,
- onError: _.noop,
- onClose: _.noop,
+ onUpdate: _.noop.bind(_),
+ onError: _.noop.bind(_),
+ onClose: _.noop.bind(_),
};
describe('ordersChannelFactory', () => {