Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
dickwolff committed Jan 16, 2025
1 parent a205c67 commit b7fa0c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/converters/saxoConverter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe("saxoConverter", () => {
// Assert
expect(actualExport).toBeTruthy();
expect(actualExport.activities.length).toBeGreaterThan(0);
expect(actualExport.activities.length).toBe(12);
expect(actualExport.activities.length).toBe(15);

done();
}, () => { done.fail("Should not have an error!"); });
Expand Down Expand Up @@ -139,7 +139,7 @@ describe("saxoConverter", () => {
// Act
sut.processFileContents(tempFileContent, () => {

expect(consoleSpy).toHaveBeenCalledWith("[i] No result found for buy action for IE00BK5BQT80 with currency USD! Please add this manually..\n");
expect(consoleSpy).toHaveBeenCalledWith("[i] No result found for buy action for VWRA with currency USD! Please add this manually..\n");

done();
}, () => done.fail("Should not have an error!"));
Expand Down

0 comments on commit b7fa0c4

Please sign in to comment.