From f8815fce6b64c73e0357873cdf1b4b752887acb1 Mon Sep 17 00:00:00 2001 From: James McTavish Date: Mon, 21 Aug 2023 16:02:04 -0400 Subject: [PATCH] fix: remove unused second parameter (#1161) --- test/test-fat-arrow.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test-fat-arrow.ts b/test/test-fat-arrow.ts index c8786406..f2496322 100644 --- a/test/test-fat-arrow.ts +++ b/test/test-fat-arrow.ts @@ -101,7 +101,7 @@ describe(__filename, () => { done(); }); }); - process.nextTick(foo.bind(null, 'test')); + process.nextTick(foo.bind(null)); }); }); it('Should process the argument value change of the fat arrow', done => { @@ -126,7 +126,7 @@ describe(__filename, () => { done(); }); }); - process.nextTick(foo.bind(null, 'test')); + process.nextTick(foo.bind(null)); }); }); });