From 476302d04e67152351d97a6ab95473d036fd4d22 Mon Sep 17 00:00:00 2001 From: Rauno Viskus Date: Wed, 2 Jun 2021 12:59:29 +0300 Subject: [PATCH] feat: unify the signatures of bind and with --- .../test/AsyncHooksContextManager.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/opentelemetry-context-async-hooks/test/AsyncHooksContextManager.test.ts b/packages/opentelemetry-context-async-hooks/test/AsyncHooksContextManager.test.ts index 762096c800..0b8e486891 100644 --- a/packages/opentelemetry-context-async-hooks/test/AsyncHooksContextManager.test.ts +++ b/packages/opentelemetry-context-async-hooks/test/AsyncHooksContextManager.test.ts @@ -367,7 +367,8 @@ for (const contextManagerClass of [ contextManager.bind(context, () => { assert.strictEqual(contextManager.active(), context); assert.strictEqual(otherContextManager.active(), otherContext); - })); + }) + ); fn(); }); });