Skip to content

Commit

Permalink
Update api.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
rylorin authored Oct 26, 2023
1 parent c369995 commit b73e813
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 b73e813

Please sign in to comment.