Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
fix: remove unused second parameter (#1161)
Browse files Browse the repository at this point in the history
  • Loading branch information
mctavish authored Aug 21, 2023
1 parent 3884008 commit f8815fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test-fat-arrow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 => {
Expand All @@ -126,7 +126,7 @@ describe(__filename, () => {
done();
});
});
process.nextTick(foo.bind(null, 'test'));
process.nextTick(foo.bind(null));
});
});
});

0 comments on commit f8815fc

Please sign in to comment.