Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
Signed-off-by: jmc <[email protected]>
  • Loading branch information
jmcook1186 authored and gnanakeethan committed Sep 15, 2023
1 parent a57431b commit e6f2574
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/case-studies/sci-accenture.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ describe('accenture:configure test', () => {
await expect(
model.calculate([
{
'sci-total': 1,
sci: 1,
},
])
).resolves.toStrictEqual([
{
'sci-total': 1,
sci: 1.05,
sci: 1,
sci_total: 1.05,
},
]);
await expect(model.calculate([{}])).rejects.toThrowError();
Expand Down

0 comments on commit e6f2574

Please sign in to comment.