Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dickwolff committed Jan 1, 2025
1 parent e860b1c commit ac0768f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/converters/degiroConverterV2.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe("degiroConverterV2", () => {
// Assert
expect(actualExport).toBeTruthy();
expect(actualExport.activities.length).toBeGreaterThan(0);
expect(actualExport.activities.length).toBe(18);
expect(actualExport.activities.length).toBe(19);

done();
}, () => { done.fail("Should not have an error!"); });
Expand Down
2 changes: 1 addition & 1 deletion src/converters/degiroConverterV3.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe("degiroConverterV3", () => {
// Assert
expect(actualExport).toBeTruthy();
expect(actualExport.activities.length).toBeGreaterThan(0);
expect(actualExport.activities.length).toBe(18);
expect(actualExport.activities.length).toBe(19);

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

0 comments on commit ac0768f

Please sign in to comment.