Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rylorin committed Nov 11, 2023
1 parent 3a2e3ca commit 10f97e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/unit/api/api.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ describe("IBApi Tests", () => {
const refId = 43;
let received = false;

ib.on(EventName.pnl, (reqId: number, pnl: number) => {
ib.on(EventName.pnl, (reqId: number, _pnl: number) => {
expect(reqId).toEqual(refId);
// expect(pnl).toBeTruthy();
if (!received) {
Expand Down

0 comments on commit 10f97e6

Please sign in to comment.