Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
OraldoDoci committed Oct 10, 2024
1 parent 6a7af14 commit b371fcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/__tests__/productService.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ describe('productService tests', () => {
}
];
const result = await fetchProductRoles(mockProduct, mockedParties[0]);
expect(DashboardApi.getProductRoles).toHaveBeenCalledWith(mockProduct.id, mockedParties[0].typology);
expect(DashboardApi.getProductRoles).toHaveBeenCalledWith(mockProduct.id, mockedParties[0].institutionType);
expect(result).toEqual(expectedRoles);
});
});
Expand Down

0 comments on commit b371fcd

Please sign in to comment.